matlab中的数据类型
2017-09-11 本文已影响0人
看风景的人_21744
- 数值类型
int8、int16、int32、int64 和它们的无符号uint8....
single、double(default)
ans、eps、NaN、pi、i,j、Inf
- 字符串
S='this is a string'
- 逻辑
a=[1 2 ;3 4];
b=logical(a);
c=true(3);
d=false(3);
- 函数句柄
f=@sin;
y=f(2*pi);
- 结构类型
stu(1).name='lsy';
stu(1).number='110';
stu(2).name='lsy2';
stu(2).number='120';
student=struct('name',{'lsy','lsy2'},'number',{'110','120'});
stu
student
struct
matlab自带的帮助
- 细胞数组
stu=cell(1,2);
stu{1,1}={'lsy','lsy2'};
stu{1,2}={'110','120'};
stu
cell