Loading from Workspace via string

5 vues (au cours des 30 derniers jours)
Daniel Schmidt
Daniel Schmidt le 6 Août 2019
Commenté : Daniel Schmidt le 6 Août 2019
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 commentaires
Adam
Adam le 6 Août 2019
Modifié(e) : Adam le 6 Août 2019
How do you expect to get your data from file into the workspace if you skip the loading part?
Daniel Schmidt
Daniel Schmidt le 6 Août 2019
The data is allready loaded into the workspace beforehand.

Connectez-vous pour commenter.

Réponse acceptée

Rik
Rik le 6 Août 2019
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 commentaires
Rik
Rik le 6 Août 2019
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 le 6 Août 2019
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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Workspace Variables and MAT-Files dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by