在matlab中,读取struct里的double数组怎么办?

如题所述

    第一,通过“.”创建结构数组。在命令行窗口输入如下代码:

    student.name='Jason'; student.class='class 3';

    student.results={'English','Maths';85,95};

    student.system=[1,2,3;4,5,6;7,8,9];

    然后输入student,按回车查看创建的结构数组student,返回如下结果:

    student = 

    name: 'Jason'

    class: 'class 3'

    results: {2x2 cell}

    system: [3x3 double]

    同时看到工作区出现名称为student,值为1*1的结构数组。

    第二,通过struct函数创建结构数组。在命令行窗口输入clear all; clc按回车,清空命令行窗口,然后输入如下代码:

    student=struct('name','Jason','class','class 3','results',{'English','Maths';85,95},'system',[1,2,3;4,5,6;7,8,9]);

    然后输入student,按回车查看创建的结构数组student,返回如下结果:

    student = 

    2x2 struct array with fields:

    name

    class

    results

    system

    同时看到工作区出现名称为student,值为2*2的结构数组。

根据具体问题类型,进行步骤拆解/原因原理分析/内容拓展等。
具体步骤如下:/导致这种情况的原因主要是……

参考资料

在matlab中,读取struct里的double数组怎么办?.百度经验[引用时间2018-1-11]

温馨提示:答案为网友推荐,仅供参考