Load an array instead of a struct with fields
조회 수: 33 (최근 30일)
이전 댓글 표시
I'm having an annoying problem where I create an array and save it to a .mat file, but when I load it, it is now converted to a "struct with fields" format which I then cannot seam to be able to access the values of. Why does it convert it? How do I get it to just plain leave it as an array!?
댓글 수: 0
채택된 답변
Bruno Luong
2022년 8월 7일
편집: Bruno Luong
2022년 8월 7일
Do this when loading,
Container = load('Saving.mat');
Saving = Container.Saving;
Check out doc of save ans struct so you won't be stuck for basic data manipulation syntax.
"Why does it convert it?"
Because you tell MATLAB doing so with your command
Saving = load('Saving.mat');
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!