Loading from Workspace via string

5 visualizzazioni (ultimi 30 giorni)
Daniel Schmidt
Daniel Schmidt il 6 Ago 2019
Commentato: Daniel Schmidt il 6 Ago 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 Commenti
Adam
Adam il 6 Ago 2019
Modificato: Adam il 6 Ago 2019
How do you expect to get your data from file into the workspace if you skip the loading part?
Daniel Schmidt
Daniel Schmidt il 6 Ago 2019
The data is allready loaded into the workspace beforehand.

Accedi per commentare.

Risposta accettata

Rik
Rik il 6 Ago 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 Commenti
Rik
Rik il 6 Ago 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 il 6 Ago 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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Workspace Variables and MAT-Files in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by