在Python 中讀取MATLAB .MAT 檔案
在SciPy 函式庫的幫助下,確實可以在Python 中讀取二進位MAT . MAT 檔。
SciPy 對 .MAT 檔案的支援
SciPy 提供在 Python 中匯入和匯出 .MAT 檔案的功能。這是透過 scipy.io 模組實現的。
存取 loadmat() 函數
使用 SciPy 版本 0.7.0 時,loadmat() 函數可能無法使用隨時可用。要存取它,您需要明確導入scipy.io 模組:
import scipy.io
導入scipy.io 後,您可以使用loadmat() 函數讀取.MAT 檔案:
mat = scipy.io.loadmat('file.mat')
載入的資料將作為包含.MAT 檔案中變數的字典儲存在mat 變數中。
以上是如何在 Python 中讀取 MATLAB .MAT 檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!