How to delete the nth element from all the variables in my workspace?

6 views (last 30 days)
Hello
I would like to delete the nth element from all the variables in my workspace, which are all vectors of the same size. I tried playing with the "who" function but it didn't work, any ideas?
Many thanks in advance

Accepted Answer

Thorsten
Thorsten on 21 Oct 2015
Edited: Thorsten on 21 Oct 2015
x = whos;
n = 2;
for i=1:numel(x)
eval([x(i).name '(' int2str(n) ')=[];'])
end
  4 Comments
Thorsten
Thorsten on 21 Oct 2015
Edited: Thorsten on 21 Oct 2015
You could add a
if numel(x(i).name) >= n
to make the code more robust.

Sign in to comment.

More Answers (0)

Categories

Find more on Entering Commands in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!