Why won't my plot graph a line?

 采纳的回答

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 个)

Walter Roberson
Walter Roberson 2021-12-2

0 个投票

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.

类别

帮助中心File Exchange 中查找有关 2-D and 3-D Plots 的更多信息

产品

版本

R2021b

标签

Community Treasure Hunt

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

Start Hunting!

Translated by