zoukankan      html  css  js  c++  java
  • matlab中的ishghandle

    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
  • 相关阅读:
    8.25
    8.24
    8.23
    8.22
    8.21
    8.20
    8.19
    8.18
    8.17
    8.16
  • 原文地址:https://www.cnblogs.com/linkzijun/p/6011866.html
Copyright © 2011-2022 走看看