美文网首页
matlab中的数据类型

matlab中的数据类型

作者: 看风景的人_21744 | 来源:发表于2017-09-11 20:02 被阅读0次
    1. 数值类型

    int8、int16、int32、int64 和它们的无符号uint8....
    single、double(default)
    ans、eps、NaN、pi、i,j、Inf

    1. 字符串

    S='this is a string'

    1. 逻辑
    a=[1 2 ;3 4];
    b=logical(a);
    c=true(3);
    d=false(3);
    
    1. 函数句柄
    f=@sin;
    y=f(2*pi);
    
    1. 结构类型
    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自带的帮助
    1. 细胞数组
    stu=cell(1,2);
    stu{1,1}={'lsy','lsy2'};
    stu{1,2}={'110','120'};
    stu
    
    cell

    相关文章

      网友评论

          本文标题:matlab中的数据类型

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