Why won't my plot graph a line?

1 vue (au cours des 30 derniers jours)
wobbly
wobbly le 2 Déc 2021
Commenté : wobbly le 2 Déc 2021
for x = linspace(1,2,10)
new = 10*x
end
plot(x,new,'b*-')

Réponse acceptée

the cyclist
the cyclist le 2 Déc 2021
Because you defined x as a looping variable, after the loop is completed, x is equal to just the last value in the loop. Instead, do this
x = linspace(1,2,10);
new = 10*x;
plot(x,new,'b*-')
  1 commentaire
wobbly
wobbly le 2 Déc 2021
Thank you!

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 2 Déc 2021
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.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Produits


Version

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by