Can't retrieve data from .mat file

Code:
input=load('MetData.mat')
output:
input =
struct with fields:
T: [5×10 double]
p: [5×10 double]
How can I extract the arrays and not just the dimensions of the arrays?

1 comentario

Craig Johnson
Craig Johnson el 31 de Jul. de 2022
I also tried:
temperature=load(MetData.mat,T)
pressure=load(MetData.mat,p)

Iniciar sesión para comentar.

 Respuesta aceptada

Walter Roberson
Walter Roberson el 31 de Jul. de 2022
temperature = input.t;
pressure = input.p;
Note that we recommend against using "input" as the name of a variable, as it gets confused with the input() function

2 comentarios

Craig Johnson
Craig Johnson el 31 de Jul. de 2022
I'm still getting the same output when using:
measurements=load('MetData.mat')
temperature = measurements.T;
pressure = measurements.p;
(also took your advice and renamed the variable)
Craig Johnson
Craig Johnson el 31 de Jul. de 2022
i forgot about the semicolon suppression thanks so much

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Preguntada:

el 31 de Jul. de 2022

Comentada:

el 31 de Jul. de 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by