Opening a .mat file
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
What is the best was to open a .mat file in Matlab R2015b, so I can then extract the 3 data set saved in that file and use the boxplot(x); function?
Thank you!
0 Kommentare
Antworten (1)
Paridhi Yadav
am 29 Jun. 2018
load name_of_file.mat
2 Kommentare
Stephen23
am 29 Jun. 2018
Better:
S = load(...)
then you can get the names of all of the contents:
fieldnames(S)
Siehe auch
Kategorien
Mehr zu Descriptive Statistics and Visualization finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!