美文网首页
isa matlab函数

isa matlab函数

作者: linkoo | 来源:发表于2017-05-20 21:15 被阅读0次

isa Determine if input is object of specified class.
isa(obj,'ClassName') returns true if obj is an instance of the
class specified by ClassName, and false otherwise. isa also returns
true if obj is an instance of a class that is derived from ClassName.

Some possibilities for 'ClassName' are:
  double          -- Double precision floating point numeric array
                     (this is the traditional MATLAB matrix or array)
  single          -- Single precision floating-point numeric array
  logical         -- Logical array
  char            -- Character array
  int8            -- 8-bit signed integer array
  uint8           -- 8-bit unsigned integer array
  int16           -- 16-bit signed integer array
  uint16          -- 16-bit unsigned integer array
  int32           -- 32-bit signed integer array
  uint32          -- 32-bit unsigned integer array
  int64           -- 64-bit signed integer array
  uint64          -- 64-bit unsigned integer array
  cell            -- Cell array
  struct          -- Structure array
  function_handle -- Function Handle
  <classname>     -- Any MATLAB, Java or .NET class

isa(obj,'classCategory') returns true if obj is an instance of
any of the classes in the specified classCategory, and false otherwise.
isa also returns true if obj is an instance of a class that is derived from
any of the classes in classCategory.

classCategory can be 'numeric', 'float', or 'integer', representing
a category of classes:
numeric -- Integer or floating-point array (double, single,
           int8, uint8, int16, uint16, int32, uint32,
           int64, uint64)
float   -- Single- or double-precision floating-point array
           (double, single)
integer -- Signed or unsigned integer array (int8, uint8,
           int16, uint16, int32, uint32, int64, uint64)

相关文章

  • isa matlab函数

    isa Determine if input is object of specified class.is...

  • 2018-02-04

    matlab函数之bsxfun

  • JAVA调用matlab程序 输入输出数据转换

    JAVA调用matlab程序 输入输出数据转换 JAVA 程序调用 matlab函数(matlab导出jar包里的...

  • Matlab 打印函数

    Matlab 打印函数: Matlab中plot函数全功能解析 功能二维曲线绘图 语法 plot(Y)plot(X...

  • MATLAB的简单随机生成函数

    关于MATLAB的随机函数: MATLAB含有一些生成随机数的函数: 一、rand ():生成(0,1)区间上均匀...

  • regionprops

    Matlab图像处理函数:regionprops 这里给出在Matlab图像处理工具箱中非常重要的一个图像分析函数...

  • matlab对图像进行处理的函数

    首先还是要对matlab的图像处理函数有一个大致的认识按照matlab对于函数的命名, imread 读取图像 i...

  • MATLAB串口通信与动态绘图

    MATLAB串口通信 MATLAB本身是支持Serial Port Devices,即串口设备。通过自带的一些函数...

  • bar

    matlab中函数bar绘制直方图中的应用函数bar(x)可以绘制直方图

  • imshow

    imshow是matlab中显示图像的函数。在matlab的命令窗口中输入doc imshow或者help ims...

网友评论

      本文标题:isa matlab函数

      本文链接:https://www.haomeiwen.com/subject/zngpxxtx.html