Loading from Workspace via string

조회 수: 4 (최근 30일)
Daniel Schmidt
Daniel Schmidt 2019년 8월 6일
댓글: Daniel Schmidt 2019년 8월 6일
Hey,
I am trying to use the load function and point assignement to load data using strings.
Currently I am using a code like this, to access variables via their string names.
a=load('filename.mat')
x=a.('variable_name')
But it can get annoying and time intensive to load the mat file seperately.
Is it possible to skip the a=load part and just to assign x directly through the workspace?
I want basically something like this:
x=workspace.('variable_name');
Thank you.
  댓글 수: 2
Adam
Adam 2019년 8월 6일
편집: Adam 2019년 8월 6일
How do you expect to get your data from file into the workspace if you skip the loading part?
Daniel Schmidt
Daniel Schmidt 2019년 8월 6일
The data is allready loaded into the workspace beforehand.

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

채택된 답변

Rik
Rik 2019년 8월 6일
The matfile function has an interface similar to what you're looking for. You do need to be careful with indexing if you want to prevent loading of the entire variable, but it will allow you to mostly keep the contents of the mat files on the disk instead of memory.
Note that there is a trade-off: this is slower to work with than having the variables in memory, but it might save time and memory when retrieving the variable if you have large variables stored in the mat file and are not using those.
  댓글 수: 3
Rik
Rik 2019년 8월 6일
It seems to me your described situation invites bad habits like numbered variables, but the code below does work (at least on my copy of R2019a).
variable_name = "text";
m=matfile('filename');
data = m.(variable_name);
It works for strings and char arrays, just like accessing fields of a struct.
Daniel Schmidt
Daniel Schmidt 2019년 8월 6일
Thanks, I got it.
I still can't read directly out of the workspace, but it is a nice workaround with the matfile function, which (hopefully) reduces the computing time and effort.
Thanks a lot to everyone

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

추가 답변 (0개)

카테고리

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