matlab 如何读取struct里面的double数组?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matlab 如何读取struct里面的double数组?相关的知识,希望对你有一定的参考价值。

有一个1*1struct a,内容是180*180的double型数组,我想把这个数组赋给b,让b的类型是180*180double型

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

    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]

参考技术A 假设你struct a中的数组名为x,则只需 b = a.x 即可实现你的目的本回答被提问者和网友采纳 参考技术B 试试c = double(a)看看行不行追问

不行

matlab读取.mat文件中的指定数据

参考技术A

load(filename,A) 加载 MAT 文件 filename 中的指定变量A。

对于读取这个变量A中的某一列,可以运用代码:

A(:,m)

可以提取A矩阵中的第m列。

拓展说明:

matlab中还有个代码importdata可以导入数据。

A = importdata('filename'),将filename中的数据导入到工作区中,并保存为变量A;

以上是关于matlab 如何读取struct里面的double数组?的主要内容,如果未能解决你的问题,请参考以下文章

matlab如何读取结构体中的数据,比如我想利用里面的数据画图

matlab中怎样读取一个文件夹里面的指定类型的所有文件的名称?

Matlab如何获得struct内元素的个数?

使用 h5py 读取 matlab .mat 文件

matlab fread读取.dat文件 怎么办啊?急死!

matlab 以cell的形式读取excel---保留原excel 里面的字符