📄 ishandl.m
字号:
function I = ishandle(h)
%ISHANDLE True for graphics handles.
% ISHANDLE(H) returns 1's where the elements of H are valid graphics
% handles and 0's where they are not.
% L. Ljung 4-4-94, AFP 10-25-94
% Copyright (c) 1994 by the MathWorks, Inc.
% $Revision: 1.4 $ $Date: 1995/01/17 13:42:57 $
hsize = size(h);
I = ones(hsize);
for j = 1:prod(hsize),
eval('findobj(h(j));','I(j)=0;');
end
% end ishandle
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -