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!