matlab结构数组创建,python – 如何从scipy.io创建一个Matlab结构数组?

考虑以下Matlab代码:

pmod(1).name{1} = 'regressor1';

pmod(1).param{1} = [1 2 4 5 6];

pmod(1).poly{1} = 1;

pmod(2).name{1} = 'regressor2-1';

pmod(2).param{1} = [1 3 5 7];

pmod(2).poly{1} = 1;

这会创建一个struct数组.数组中的每个结构包含三个类型为cell的字段.因此,我们在pmod中有以下层次结构:

pmod // struct array

|

*- struct

| |

| *- cell // contains 1 or more strings

| *- cell // contains 1 or more arrays

| *- cell // contains 1 or more arrays

|

*- struct [...]

我正在尝试使用scipy.io在Python中生成上述数据结构,以便可以将它们加载到Matlab中(SPM要求此层次结构).

创建一个结构很简单,因为scipy.io.savemat将任何类型为str的键都保存为Matlab结构:

from scipy.io import savemat

struct = {

'field1': 1,

'field2': 2,

}

savemat('/tmp/p.mat', {'a_struct': struct})

但是,当试图将其概括为结构数组时,我遇到了以下障碍:

struct_array = [struct, struct]

savemat('/tmp/p.mat', {'s_array': struct_array})

这不符合预期;当将p.mat加载到Matlab中时,我得到一个1×2的单元格数组,而不是一个struct数组.

如何使用scipy.io创建结构数组?

笔记:

>我尝试过savemat(‘/ tmp / p.mat’,np.array(struct_array))和savemat(‘/ tmp / p.mat’,np.array(struct_array,dtype = object)),但无济于事.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值