How can I select a specific variable in the .mat file which contains different variables in the user interface?

조회 수: 9 (최근 30일)
Hi! I want to design an app which can draw with a .mat file. How can I select a specific variable in the .mat file which contains different variables in the user interface? By 'text area' or something?

채택된 답변

Fangjun Jiang
Fangjun Jiang 2019년 12월 5일
  1. Use load() with return structure.
gongStruct = load('gong.mat');
fieldnames(gongStruct)
  1. Use matfile object.
Help matfile

추가 답변 (1개)

Cam Salzberger
Cam Salzberger 2019년 12월 5일
편집: Cam Salzberger 2019년 12월 5일
Hello Kunpeng,
You may consider using whos to determine the variables available in a MAT file. Then you can specify the variable you want when you call load based on the user selection. This will be faster than loading the entire MAT file into the workspace, unless you expect the user to frequently switch between what they want loaded.
You may also consider checking out the matfile object, as Fangjun suggested.
-Cam
  댓글 수: 5
Stephen23
Stephen23 2020년 3월 10일
"I have solved this problem with eval() function!"
A much better** solution is to load into an output variable, just like Fangjun Jiang's Answer shows, and then access its fields:
** better in the sense faster, more efficient, more robust, less buggy, much easier to debug. The approach you are using is not recommended:
Kunpeng Zhang
Kunpeng Zhang 2020년 3월 14일
Wow,that is awesome!!!I will study and try alternative methods. Thank you for your advice!!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT Files에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by