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!