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

最新文章

  1. 算法与数据结构(十三) 冒泡排序、插入排序、希尔排序、选择排序(Swift3.0版)
  2. EasyUI 开发笔记(一)
  3. Java基础之面向对象以及其他概念
  4. linux:vi 替换命令
  5. C#6.0语法糖剖析(二)
  6. c# 读取远程主机性能计数器
  7. Java JNI调用c语言的dll测试
  8. xp系统下网络打印机怎么设置
  9. js 解析XML 在Edge浏览器下面 无法准确读到节点属性值
  10. 前端必知的ajax
  11. how tomcat works 总结 二
  12. 我的第一次做app的细节
  13. Linux-Slabinfo
  14. message:GDI+ 中发生一般性错误。
  15. PAT A1136 A Delayed Palindrome (20 分)——回文,大整数
  16. Nand Flash 裸机程序
  17. what's the python之函数及装饰器
  18. http 状态码 40x
  19. android 转屏 onConfigurationChanged 不会执行的问题
  20. AppScan安全测试入门操作

热门文章

  1. UICollectionViewController用法
  2. POJ 3041 Asteroids
  3. Borg Maze(MST & bfs)
  4. Junit4.x扩展:运行指定方法
  5. HDU 1878 欧拉回路 图论
  6. 第14章 使用DHCP动态管理主机地址
  7. DrClient 校园网客户端破解
  8. phpcms某处储存型XSS(demo+本地演示)
  9. 【ERROR】使用jquery的ajax出现error:readyState=4,status=500
  10. 【Hibernate】Hibernate系列2之Session详解