Only clear the variables in for loop
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Jan
le 11 Juil 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 commentaires
Guillaume
le 11 Juil 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.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Workspace Variables and MAT Files dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!