matlab中查看数据类型的函数
时间: 2024-01-28 12:02:50 浏览: 141
1. class()函数:用于查看变量的数据类型,返回一个字符串。
例如:class(5) 返回 'double'
2. isa()函数:用于判断变量是否属于指定的类别,返回一个逻辑值。
例如:isa(5,'double') 返回 true
3. whos()函数:用于查看当前工作空间中所有变量的信息,包括变量名、大小、数据类型等。
例如:whos
4. typeinfo()函数:用于查看数据类型的详细信息,包括基本类型、大小、字节顺序等。
例如:typeinfo(int16(5)) 返回
int16 with properties:
BitsPerWord: 16
Signed: 1
ByteOrder: 'littleEndian'
Name: 'int16'
5. metaclass()函数:用于查看类的元信息,包括类名、继承关系、属性和方法等。
例如:metaclass(matlab.graphics.axis.Axes) 返回
Meta.class with properties:
Name: 'matlab.graphics.axis.Axes'
Description: ''
DetailedDescription: ''
Hidden: 0
Sealed: 0
Abstract: 0
HandleCompatible: 1
ConstructOnLoad: 0
InferiorClasses: {0x1 cell}
ContainingPackage: [1x1 meta.package]
SuperclassList: [1x1 meta.class]
PropertyList: [19x1 meta.property]
MethodList: [47x1 meta.method]
EventList: [12x1 meta.event]
阅读全文