how to plot roots with a value used in the function?

67 ビュー (過去 30 日間)
Brian S.
Brian S. 2019 年 10 月 23 日
コメント済み: Brian S. 2019 年 10 月 23 日
I'm pretty new to matlab so sorry if this question seems trivial.
My function is y = x^2 + bx -20. Im trying to find the roots for when b = 0 to 10 then plot the roots as a function of b.
So far Ive tried to do somethin like this but the graph comes up empty.
for b = 0:10
p = [1 b -20];
r = roots(p)
plot(r, b)
end
Suggestions? Any help is great thanks

採用された回答

Walter Roberson
Walter Roberson 2019 年 10 月 23 日
for b = 0:10
p = [1 b -20];
r = roots(p);
plot(b, r, 'k*');
hold on
end
hold off
  1 件のコメント
Brian S.
Brian S. 2019 年 10 月 23 日
cool it works thanks

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by