学习笔记208—python 读取matlab 中元组(cell)文件
作者:互联网
python 读取matlab 中元组(cell)文件
举例子:’28854_TV_fls_fc.mat‘的数据格式如下【matlab中显示情况】:
具体读取代码实现过程:
1、correlation_matrix = loadmat('E:/../TDC_fls_fc/28854_TV_fls_fc.mat')
2、correlation_matrix = correlation_matrix['TV_mat']
3、correlation_matrix = correlation_matrix[0][1] 【此处[0][1], 0表示取第一维度中的首列,1表示取第二维度中的第二列,因为python中序号是从0开始的】
标签:matrix,python,208,cell,TV,matlab,correlation,mat 来源: https://www.cnblogs.com/hechangchun/p/14632618.html