“Python Open Mat” Código de respuesta

Python Open Mat

import scipy.io
mat = scipy.io.loadmat('file.mat')
Worrisome Weasel

Abra el archivo MAT en 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']
White Faced Tree Rat

Leer el archivo .mat en Python

import h5py
with h5py.File('test.mat', 'r') as file:
    print(list(file.keys()))
Trewqy Zebra

Leer el archivo .mat en Python

with h5py.File('test.mat', 'r') as file:
    a = list(file['a'])
Trewqy Zebra

Respuestas similares a “Python Open Mat”

Preguntas similares a “Python Open Mat”

Más respuestas relacionadas con “Python Open Mat” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código