Opening a .mat file
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponses (1)
Paridhi Yadav
le 29 Juin 2018
load name_of_file.mat
2 commentaires
Stephen23
le 29 Juin 2018
Better:
S = load(...)
then you can get the names of all of the contents:
fieldnames(S)
Voir également
Catégories
En savoir plus sur Descriptive Statistics and Visualization 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!