Plot the function on graph
3 ビュー (過去 30 日間)
古いコメントを表示
y = sqrt(9x + b) forina-2, b = 3 (i1) a = 3 , b = 2 (m) * a = 2 , b = 2 over the interval [0,5]
0 件のコメント
回答 (2 件)
Sam Chak
2025 年 2 月 7 日
Look up the documentation plot(). There are plenty of simple examples that you can learn to plot it yourself.
0 件のコメント
Star Strider
2025 年 2 月 7 日
I have n o idea what ‘forina’ refers to, however the rest is straightforward —
b = 2;
y = @(x) sqrt(9*x + b);
figure
fplot(y, [0 5])
grid
.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!