Answers for "handling mat file in python"

2

python open mat file

import scipy.io
mat = scipy.io.loadmat('file.mat')
Posted by: Guest on August-26-2020
1

open mat file in python

#!python
#!/usr/bin/env python
from scipy.io import loadmat
x = loadmat('test.mat')
lon = x['lon']
lat = x['lat']
# one-liner to read a single variable
lon = loadmat('test.mat')['lon']
Posted by: Guest on January-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language