python保存读取mat文件

1.使用python将数组存为mat文件

import numpy as np
import scipy.io as scio

data = np.random.randn(4,3)
print('data.shape:', data.shape)
print('data \n', data)

#//保存mat文件
scio.savemat('test.mat', {'array': data})

输出结果:

data.shape: (4, 3)
data 
 [[-0.40026532 -0.89590894 -0.786739  ]
 [-0.88980627  0.81444202  0.34033266]
 [-0.30045292  0.98880767 -0.03519286]
 [ 2.07324159 -0.70659934 -0.01854175]]

使用matlab查看:
在这里插入图片描述

2.使用python读取mat文件

read = scio.loadmat('test.mat')['array']
print('read.shape:', read.shape)
print('read:\n', read)

输出结果:

read.shape: (4, 3)
read:
 [[-0.40026532 -0.89590894 -0.786739  ]
 [-0.88980627  0.81444202  0.34033266]
 [-0.30045292  0.98880767 -0.03519286]
 [ 2.07324159 -0.70659934 -0.01854175]]
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值