MATLAB学习与使用:结构数组(struct)的创建
的有关信息介绍如下:结构数组(struct)与元胞数组(cell)类似,都可以存放不同类型的数据,都是MATLAB重要的数据类型。本文介绍结构数组的创建:通过“.”创建结构数组,通过struct函数创建结构数组,通过“.”创建高维的结构数组,通过struct函数创建高维的结构数组。
第一,通过“.”创建结构数组。在命令行窗口输入如下代码:
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的结构数组。
第三,通过“.”创建高维的结构数组。在命令行窗口输入clear all; clc按回车,清空命令行窗口,然后输入如下代码:
student(1).name='Jason'; student(2).name='Chet';
student(1).class='class 3'; student(2).class='class 3';
student(1).results={'English','Maths';85,95}; student(2).results={'English','Maths';75,65};
student(1).system=[1,2,3;4,5,6;7,8,9]; student(2).system=magic(3);
然后输入student,按回车查看创建的结构数组student,返回如下结果:
student =
1x2 struct array with fields:
name
class
results
system
同时看到工作区出现名称为student,值为1*2的结构数组。
第四,通过struct函数创建高维的结构数组。在命令行窗口输入clear all; clc按回车,清空命令行窗口,然后输入如下代码:
student=struct('name',{'Jason','Chet'},'class',{'class 3','class 3'},'results',...
{{'English','Maths';85,95},{'English','Maths';75,65}},'system',{[1,2,3;4,5,6;7,8,9],magic(3)});
然后输入student,按回车查看创建的结构数组student,返回如下结果:
student =
1x2 struct array with fields:
name
class
results
system
同时看到工作区出现名称为student,值为1*2的结构数组。
第五,在命令行窗口输入doc struct,然后按回车,可以查看帮助文档对关结构数组的介绍。