python讀取並寫入mat檔案
用matlab生成一個示例mat檔案:
clear;clc
matrix1 = magic(5);
matrix2 = magic(6);
save matData.mat
用python3讀取並寫入mat檔案
import scipy.io
data = scipy.io.loadmat('matData.mat') # 讀取mat檔案
# print(data.keys()) # 檢視mat檔案中的所有變數
print(data['matrix1'])
print(data['matrix2'])
matrix1 = data['matrix1']
matrix2 = data['matrix2']
print(matrix1)
print(matrix2)
scipy.io.savemat('matData2.mat',{'matrix1':matrix1, 'matrix2':matrix2}) # 寫入mat檔案
相關文章
- 讀取檔案流並寫入檔案流
- python檔案建立、讀取和寫入Python
- python中如何使用scipy.io讀寫.mat檔案?Python
- python解壓並讀取檔案Python
- 如何讀取和寫入JSON檔案JSON
- csv檔案的寫入和讀取
- EEGlab匯入.mat檔案
- Python 讀寫檔案Python
- Python——檔案讀寫Python
- 「Python」:檔案讀寫Python
- 如何使用Python讀取文字檔案並回答問題?Python
- Python 檔案讀寫(Python IO)Python
- python讀取大檔案Python
- python小白檔案讀取Python
- python 讀取文字檔案Python
- Python中Spark讀取parquet檔案並獲取schema的JSON表示PythonSparkJSON
- python讀寫excel檔案PythonExcel
- python檔案讀寫操作Python
- 08 常用:寫入 讀取檔案格式為:alex|123
- Python讀取大量Excel檔案並跨檔案批次計算平均值PythonExcel
- nodejs 讀取excel檔案,並去重NodeJSExcel
- java讀取大檔案並處理Java
- python如何讀取大檔案Python
- Python中的檔案讀寫Python
- python 寫入CSV檔案Python
- Python入門教程之檔案讀寫操作知識Python
- C#讀取文字檔案和寫文字檔案C#
- [QT]QSharedMemory讀寫cv::MatQT
- C++檔案操作實戰:建立、寫入、讀取、修改檔案一應俱全C++
- Python:讀寫檔案(I/O) | 組織檔案Python
- C語言讀取寫入CSV檔案 [一]基礎篇C語言
- Python的configparser模組讀取.ini檔案內容並輸出Python
- phpSpreadsheet 讀取圖片並另存為檔案PHP
- 用 ABAP 新建本地 Excel 檔案並寫入資料試讀版Excel
- php如何上傳txt檔案,並且讀取txt檔案PHP
- iOS自定義log並寫入檔案iOS
- Python 讀取HDF5檔案Python
- python怎麼讀取配置檔案Python
- Python檔案讀寫、StringIO和BytesIOPython