Why won't my plot graph a line?
Mostra commenti meno recenti
for x = linspace(1,2,10)
new = 10*x
end
plot(x,new,'b*-')
Risposta accettata
Più risposte (1)
Walter Roberson
il 2 Dic 2021
0 voti
A for loop assigns the loop control variable each column of the expression in turn. After the loop it has the last value it was assigned.
So after the loop your x is scalar, not the entire list of values.
Categorie
Scopri di più su Loops and Conditional Statements in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
