How to open variables in command line?
27 次查看(过去 30 天)
显示 更早的评论
Is there a function that can be typed into the command window to open a variable listed in the workspace? I have many hundreds of variables generated in one of my codes and finding individual variables is a huge time waster.
0 个评论
采纳的回答
Chandrasekhar
2014-3-10
use the command
openvar(variablename)
eg: if variable name is var then enter the command
openvar('var')
0 个评论
更多回答(2 个)
David Sanchez
2014-3-10
You can sue who:
To present all the variables:
who
To present variables whose name start by H:
who H*
To present variables ending by 1:
who *1
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!