Opening a .mat file
2 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Paridhi Yadav
2018-6-29
load name_of_file.mat
2 个评论
Stephen23
2018-6-29
Better:
S = load(...)
then you can get the names of all of the contents:
fieldnames(S)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Descriptive Statistics and Visualization 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!