How to store an array of values in for loop?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Casey
le 2 Fév 2012
Commenté : Niklas Kurz
le 23 Jan 2021
I am unsure on how to store an array of values in a for loop? example:
for i=1:10 A=(R*5)+(Y*6); end;
% A represents the array.
When i type A, i could not get the set of array values.
0 commentaires
Réponse acceptée
Krishnendu Mukherjee
le 2 Fév 2012
for i=1:10 A(:,i)=(R*5)+(Y*6); end you can try this
3 commentaires
Plus de réponses (0)
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!