色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

如何讀取mat文件python

呂致盈2年前19瀏覽0評論

如何讀取mat文件python?

python中讀取mat文件在python中可以使用scipy.io中的函數loadmat()讀取mat文件,函數savemat保存文件。1、讀取文件如上例:1234567#coding:UTF-8 import scipy.io as scio dataFile = 'E://data.mat'data = scio.loadmat(dataFile)注意,讀取出來的data是字典格式,可以通過函數type(data)查看。1print type(data)結果顯示1