Hi guys I want to ask something I am new here. how can I plot the function f= x2 between the numbers -5 and 5
4 ビュー (過去 30 日間)
古いコメントを表示
Hi guys I want to ask something I am new here. how can I plot the function f= x2 between the numbers -5 and 5
0 件のコメント
採用された回答
Star Strider
2016 年 2 月 11 日
I’m not certain what you want, but one of these should work:
x = linspace(-5,5);
f1 = x*2;
f2 = x.^2;
figure(1)
subplot(2,1,1)
plot(x, f1)
title('f(x) = x\cdot2')
grid
subplot(2,1,2)
plot(x, f2)
title('f(x) = x^2')
grid
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!