Azzera filtri
Azzera filtri

Opening a .mat file

1 visualizzazione (ultimi 30 giorni)
Bradley Cory
Bradley Cory il 29 Giu 2018
Commentato: Stephen23 il 29 Giu 2018
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!

Risposte (1)

Paridhi Yadav
Paridhi Yadav il 29 Giu 2018
load name_of_file.mat
  2 Commenti
Bradley Cory
Bradley Cory il 29 Giu 2018
So I did this, but the 3 saved things are in that opened workspace and I cant boxplot that?
Stephen23
Stephen23 il 29 Giu 2018
Better:
S = load(...)
then you can get the names of all of the contents:
fieldnames(S)

Accedi per commentare.

Prodotti


Release

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by