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!