how to remove all variables in the workspace

8 visualizzazioni (ultimi 30 giorni)
tevzia
tevzia il 3 Set 2013
Risposto: Hans Scharler il 22 Set 2022
Hi, I try to remove/clear all the variables in the work space. But not typing clear on the command window. I try to add clear at the beginning of the my code. but it doesnt work. is there any way to add clear or any other way to clear workspace when i run mycode

Risposte (2)

Hans Scharler
Hans Scharler il 22 Set 2022
You can use clear command and specifiy the variable name right in your code.
newVar = 42
newVar = 42
newVar = newVar + 3
newVar = 45
clear newVar
newVar
Unrecognized function or variable 'newVar'.

Image Analyst
Image Analyst il 3 Set 2013
Modificato: Image Analyst il 3 Set 2013
Try "clearvars" or "clear all" as a line in your script. Do not do this in a function that takes input arguments or else you will blow them away!!!

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by