Lets say I have 100 variables in Matlab workspace. For example I take 5 variables here:
Matrix
Sum
Addition
Area
Perimeter
Subtraction
...and so forth.
How can I select or filter out a variable name based on some keyword likeAdd
or a search term which selects the variable Addition
in the workspace. I used the who
command as
who -regexp Add
But this only displays the name of the variable and not its value.