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!

Antworten (1)

Paridhi Yadav
Paridhi Yadav am 29 Jun. 2018

0 Stimmen

load name_of_file.mat

2 Kommentare

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

Melden Sie sich an, um zu kommentieren.

Produkte

Version

R2015b

Gefragt:

am 29 Jun. 2018

Kommentiert:

am 29 Jun. 2018

Community Treasure Hunt

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

Start Hunting!

Translated by