⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ishandl.m

📁 美国德克萨斯州大学电子工程系开发的一套进行语音分析的MATLAB程序. A MATLAB software tool for speech analysis.
💻 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 + -