Answers for "How to load .mat file and convert it to .csv file?"

0

How to load .mat file and convert it to .csv file?

import pandas as pd
from scipy.io import loadmat

data_dict = loadmat('ecgca274_edfm.mat')
data_array = data_dict['val']
data_array = data_array.transpose(1, 0)
df = pd.DataFrame(data_array,
                  columns=['ch'+str(n) for n in range(1,7)])
Posted by: Guest on October-30-2021

Code answers related to "How to load .mat file and convert it to .csv file?"

Python Answers by Framework

Browse Popular Code Answers by Language