Loading from Workspace via string

5 ビュー (過去 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 Center および File ExchangeWorkspace 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