Can't retrieve data from .mat file
2 views (last 30 days)
Show older comments
Craig Johnson
on 31 Jul 2022
Commented: Craig Johnson
on 31 Jul 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?
Accepted Answer
Walter Roberson
on 31 Jul 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
More Answers (0)
See Also
Categories
Find more on Structures in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!