plotting several quadratic functions

5 ビュー (過去 30 日間)
ahmed-wali
ahmed-wali 2012 年 11 月 15 日
回答済み: Dr 2022 年 10 月 18 日
would like to plot 3 to 4 qaudratic functions (a*x^2+1) on the same coordinates by changing the value of a from -1:1:2. can i use the for loop for this? many thanks

採用された回答

Grzegorz Knor
Grzegorz Knor 2012 年 11 月 15 日
Yes, I think that it is good idea:
figure
hold all
x = linspace(0,1);
for a=-1:1:2
plot(x,a*x.^2+1)
end
hold off
legend('a=-1','a=0','a=1','a=2')
  1 件のコメント
ahmed-wali
ahmed-wali 2012 年 11 月 17 日
great many thanks

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

その他の回答 (1 件)

Dr
Dr 2022 年 10 月 18 日
figure
hold all
x = linspace(0,1);
for a=-1:1:2
plot(x,a*x.^2+1)
end
hold off
legend('a=-1','a=0','a=1','a=2')

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by