Adding a Foor Loop
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
WhatIsMatlab-
il 20 Feb 2016
Modificato: WhatIsMatlab-
il 23 Feb 2016
know I need to use a for loop but I cannot seem to get it to run.
0 Commenti
Risposta accettata
Star Strider
il 20 Feb 2016
One problem was this line in your second while loop:
d(end+1,1:1) = n;
changing it to:
d(end+1,:) = n;
allows your code to run. I will let you decide if your code produces the correct results.
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!