Only clear the variables in for loop
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi guys, I am wondering if there is quick way to clear the variables just in the for loop but not the variables outside the for loop? I know I can use
clearvars
clearvars -except
However, I have as much variables in the for loop as those outside the loop; around 30 different variables each. Is there a way that I don't have to type all of them out?
Thanks!
0 Commenti
Risposta accettata
Jan
il 11 Lug 2018
It is rarely useful to clear variables in the workspace. In many cases this decreases the speed. Prefer a proper pre-allocation, such that clearing is not required anymore.
30 Variables are a lot for a loop. Remember that a high code complexity reduces the readability and maintainability. The need to clear variables might be a secure signal, that the complexity has grown over a certain limit. A solution would be to move the body of the loop into an extra function. Then the smaller piece of code is easier to test, to modify, to debug and to maintain, and in addition the workspace is kept clean automatically.
2 Commenti
Guillaume
il 11 Lug 2018
Yes, as Jan says, move the calculations performed inside the loop into their own functions. That way, there will be nothing to clear and your code will be a lot more readable.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Workspace Variables and MAT Files 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!