Is it possible to 'clear all' variables except one?
79 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Zeynab Mousavikhamene
el 5 de Sept. de 2019
Respondida: James Tursa
el 5 de Sept. de 2019
I am using clear all command. But I wan to keep just one of the varibles. Lets say the name of that variable is 'var'.
0 comentarios
Respuesta aceptada
madhan ravi
el 5 de Sept. de 2019
Editada: madhan ravi
el 5 de Sept. de 2019
clearvars -except var
0 comentarios
Más respuestas (2)
Walter Roberson
el 5 de Sept. de 2019
No, that is not possible using "clear all"
The only time you should ever use "clear all" is if you are deliberately resetting your entire MATLAB session. If it would not be acceptable to quit and re-enter MATLAB at that point then you should not use "clear all"
You should have a look at the clearvars() command, which does have an -except option.
0 comentarios
Ver también
Categorías
Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!