How can I set multiple variables to the same initial value efficiently?
17 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Anteneh Zewdu
le 6 Déc 2018
Commenté : madhan ravi
le 13 Déc 2018
I hate using the following way of defining variables;
a= 5, b=a, c=a, d=a, etc
I have a lot of variable taking the same intial value, how can do it efficiently?
Thanks in advance!
1 commentaire
Stephen23
le 6 Déc 2018
"I have a lot of variable taking the same intial value, how can do it efficiently?"
Simple: store your data in one array.
Having "a lot of variables" is a sign that you should be using arrays anyway.
Réponse acceptée
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements 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!