Can't retrieve data from .mat file
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Craig Johnson
le 31 Juil 2022
Commenté : Craig Johnson
le 31 Juil 2022
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?
Réponse acceptée
Walter Roberson
le 31 Juil 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Structures dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!