Opening a .mat file
显示 更早的评论
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!
回答(1 个)
Paridhi Yadav
2018-6-29
load name_of_file.mat
2 个评论
Bradley Cory
2018-6-29
Stephen23
2018-6-29
Better:
S = load(...)
then you can get the names of all of the contents:
fieldnames(S)
类别
在 帮助中心 和 File Exchange 中查找有关 Box Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!