Base workspace variable name
3 views (last 30 days)
Show older comments
Gopalakrishnan venkatesan
on 4 Dec 2015
Edited: Gopalakrishnan venkatesan
on 4 Dec 2015
Is there any command to get the base workspace variable name ?
2 Comments
Guillaume
on 4 Dec 2015
In which contest? within a function? Which variable? All of them? An input to a function?
Accepted Answer
Thorsten
on 4 Dec 2015
Edited: Thorsten
on 4 Dec 2015
S = whos;
varname = {S.name};
5 Comments
Guillaume
on 4 Dec 2015
"use evalin": Here be dragons. Do not go down that path unless you know what you're doing and know all the pitfalls of using eval and its friends.
For what reasons do you want to have the list of variables in the base workspace?
More Answers (0)
See Also
Categories
Find more on Scope Variables and Generate Names in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!