modify all vectors in workspace

10 views (last 30 days)
Joel Rovner
Joel Rovner on 18 Apr 2016
Edited: Stephen23 on 19 Jun 2019
I want to perform the same operation namely reshape() on all the arrays stored in the workspace, but there are a lot of arrays present and it would be tedious to do them individually. Is there any way to iterate through all of the arrays. For example I know if I type myvars=who; and then myvars(1) it will display the first array in the workspace. But how would you use myvars(i) in say reshape()?

Answers (2)

Stephen23
Stephen23 on 19 Apr 2016
Edited: Stephen23 on 19 Jun 2019

Kirby Fears
Kirby Fears on 18 Apr 2016
Joel,
I will preface this by saying you really shouldn't have variables floating around your workspace without knowing their names at all times. The best practice would be to store all variables inside a cell array or struct which you can easily iterate over.
Nonetheless, here's a way it can be done with 'who'.
vars = who;
for i = 1:numel(vars),
tempvar = eval(vars{i});
if isnumeric(tempvar),
% perform manipulations of tempvar, like reshaping
end
eval(sprintf('%s = tempvar;',vars{i}));
end
I strongly suggest you revisit the process that generated all these variables and store them in a struct or cell array instead.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!