Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
help with mat file
조회 수: 1 (최근 30일)
이전 댓글 표시
When I load a mat file by giving its full path like this
load ('E:\Mathematical modellling\assignment1\april6\spectral_3.mat');
whos -file 'E:\Mathematical modellling\assignment1\april6\spectral_3.mat'
I find that the type is double
but when I try to open it like
y=load ('spectral_3.mat');
whos -file 'spectral_3.mat'
then i find that the type is struct How can i fix it
Actually I want to send the mat file with the assignment.
댓글 수: 2
Walter Roberson
2018년 4월 9일
In particular y will be a struct with one field for each variable stored in the file.
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!