Why won't my plot graph a line?

1 回表示 (過去 30 日間)
wobbly
wobbly 2021 年 12 月 2 日
コメント済み: wobbly 2021 年 12 月 2 日
for x = linspace(1,2,10)
new = 10*x
end
plot(x,new,'b*-')

採用された回答

the cyclist
the cyclist 2021 年 12 月 2 日
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 件のコメント
wobbly
wobbly 2021 年 12 月 2 日
Thank you!

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2021 年 12 月 2 日
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.

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by