To see the list of all variables in the current workspace in MATLAB, you can use the who command. Simply type who in the command-line and press enter. This will display a list of all variables along with their sizes and data types.
main.m136 chars5 lines
You can also use the whos command to see more detailed information about each variable.
main.m288 chars7 lines
The whos command provides additional information such as the number of bytes each variable uses in memory and any attributes associated with the variables.
gistlibby LogSnag