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

save

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.

Best Answer

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');