Borrar filtros
Borrar filtros

Is there any way to change variable to string for the save function?

7 visualizaciones (últimos 30 días)
So I have many instances of Matlab running on the same drive. Every instance will calculate some result and then save it based on the data it was working on and I am really struggling with the save part.
Suppose instance 1 will be working with data ranging from 1 to 40, next will be working on data 41 to 60 and so on. The variable name within each instance is the same, so using the same name with save will just overwrite the results already present on the drive.
I can do this manually but would rather not have to worry about changing everything manually if my variables changed.
For example I have
data_start = 1, data_end = 20;
...
...
...
%result achieved, now save
my_result = sprintf(result_%d_%d, data_start,data_end); %this will create a string result_1_20
save(my_result, result);
This gives an error that argument must be a string. I have tried every possible solution, I have tried using the anonymous function
name = @(x) inputname(1);
and that didnt work, I tried using structs, and that didnt work. I even tried a variation of str2func, and that didnt work.
I am kind of out of ideas here.. the only solution available to this is eval. But I am told NEVER EVER TO USE EVAL.. so here I am.. some help would be greatly appreciated.

Respuesta aceptada

Star Strider
Star Strider el 27 de Abr. de 2016
Editada: Star Strider el 27 de Abr. de 2016
You have three problems. The first is that the format descriptor needs to be in single quotes, the second is that you have to specify your file name as being .mat, otherwise the save function thinks your ‘my_result’ string is a variable (to which you have assigned nothing), and saves everything to the default ‘matlab.mat’ file. The third is that the arguments to save all have to be strings.
Try this:
my_result = sprintf('result_%d_%d.mat', data_start,data_end); %this will create a string result_1_20
save(my_result, 'result');
  2 comentarios
Faraz
Faraz el 27 de Abr. de 2016
Many thanks. The single quotes missing was a typo on my part. I cant believe it was as simple as adding .mat to the name and here I was looking into eval alternatives.
Star Strider
Star Strider el 27 de Abr. de 2016
My pleasure.
The documentation on save could be a bit clearer on having the filename specifically include the .mat extension. You have to dig down into the documentation to realise that it’s necessary.

Iniciar sesión para comentar.

Más respuestas (2)

Kevin
Kevin el 27 de Abr. de 2016
I think you may just have a simple typo in one line of your code. Try this,
my_result = sprintf('result_%d_%d', data_start,data_end);

Jan
Jan el 27 de Abr. de 2016
Editada: Jan el 27 de Abr. de 2016
The examples in doc save are useful. There you find the explanation that these two commands are equivalent:
save example.mat A B -v7.3
save('example.mat', 'A', 'B', '-v7.3')
As Star Stride has suggested already: Quotes are required around the name of the variable, if you use the functional form.

Categorías

Más información sobre Function Creation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by