MATLAB: How to open variables in command line

command windowMATLABopen variableshortcut

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.

Best Answer

use the command
openvar(variablename)
eg: if variable name is var then enter the command
openvar('var')