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

1 visualización (últimos 30 días)
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

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by