What is the best way to get the name of a variable in a script?
39 views (last 30 days)
Show older comments
Jason Nicholson
on 14 Jan 2016
Answered: Oleksandr Slovak
on 4 May 2018
What is the best way to get the name of a variable in a script?
The below code works but I am wondering if there is a built-in function that does this:
getname = @(x) inputname(1);
var = 75;
name = getname(var);
The reason I want the name of a variable is I don't want to hard code the name of a variable into a save command like this:
save('Myfile.mat', 'var');
This seems better:
save('Myfile.mat', getname(var));
When you rename a variable, the hard coded save command breaks.
1 Comment
Accepted Answer
Guillaume
on 14 Jan 2016
No, there is no built-in function and your way is actually clever.
And yes, the fact that load and save require variable names instead of the variable themselves feels awkward and prevent easy refactorisation.
Of course, if you go your way, you have to make sure that the code that reads the mat file can cope with changing variable names
0 Comments
More Answers (1)
Oleksandr Slovak
on 4 May 2018
aaa = 16;
safe_any_variable(aaa)
function safe_any_variable(variable_by_value)
variable_name = inputname(1);
mfile_name = [variable_name, '.mat'];
evalin('base', "save('" + mfile_name + "', '" + variable_name + "');");
end
0 Comments
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!