ishghandle True for Handle Graphics object handles.
ishghandle(H) returns an array that contains 1's where the elements
of H are valid graphic object handles and 0's where they are not.
Differs from ISHANDLE in that Simulink objects handles return false
% 判断H是否是图像句柄,如:
I = imread('000.jpg'); H = imshow(I);
ishghandle(H)
ans =
1
A = 666.6471;
>> ishghandle(A)
ans =
0
相关文章
- 01-31不让应用的日志输出到message文件中
- 01-31python函数定义中引用外部变量的一个问题
- 01-31Python:字符串中引用外部变量的3种方法
- 01-31123 Python程序中的线程操作-协程
- 01-31OpenCV 2.2版本号以上显示图片到 MFC 的 Picture Control 控件中
- 01-31OpenGL 中关于ImageTexture使用中遇到的两个问题 —— 快速清空 与 读写错误
- 01-31python-如何在WSGI处理程序中捕获“ [Errno 32]损坏的管道”
- 01-31map和hashmap中的区别
- 01-31语义分割中的nonlocal[2]-OCnet
- 01-31统计s="hello alex alex hello haiyan cc haiyan com"中每个单词的个数