Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93555789
isTargetAxes.m
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 29, 17:14
Size
638 B
Mime Type
text/html
Expires
Sun, Dec 1, 17:14 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22664835
Attached To
rINSTCONTROL Instrument Control
isTargetAxes.m
View Options
function
tf
=
isTargetAxes
(
hThis
)
%
ISTARGETAXES
Is
the
Target
an
axes
%
%
See
also:
graphics
.
Cursorbar
.
isTargetChart
,
graphics
.
Cursorbar
.
%
%
Thanks
to
<
a
href
=
"http://www.mathworks.com/matlabcentral/profile/authors/3354683-yaroslav"
>
Yaroslav
Don
</
a
>
for
his
assistance
in
updating
cursorbar
for
%
MATLAB
Graphics
and
for
his
contribution
of
new
functionality
.
%
Copyright
2003
-
2016
The
MathWorks
,
Inc
.
tf
=
false
;
%
return
empty
if
there
is
no
Target
if
isempty
(
hThis
.
Target
)
tf
=
[];
return
end
if
(
length
(
hThis
.
Target
)
==
1
)
&&
ishandle
(
hThis
.
Target
)
&&
isa
(
hThis
.
Target
,
'
matlab
.
graphics
.
axis
.
Axes
'
)
tf
=
true
;
end
Event Timeline
Log In to Comment