Why won't my plot graph a line?

 Respuesta aceptada

the cyclist
the cyclist el 2 de Dic. de 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*-')

Más respuestas (1)

Walter Roberson
Walter Roberson el 2 de Dic. de 2021

0 votos

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.

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Productos

Versión

R2021b

Etiquetas

Preguntada:

el 2 de Dic. de 2021

Comentada:

el 2 de Dic. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by