How to draw a 2d ploy for polynomial. for example: 6x^5+5x^4

 採用された回答

Dyuman Joshi
Dyuman Joshi 2023 年 10 月 13 日

1 投票

Use fplot

2 件のコメント

Durga thiyanesh
Durga thiyanesh 2023 年 10 月 16 日
thanks for your answer. i dont know where i put fplot.. can u please explain the code ?
Dyuman Joshi
Dyuman Joshi 2023 年 10 月 16 日
If you are asking how to use fplot, you should take a look at the link I mentioned.
You can also take a look my comment on your previous question for reference - https://in.mathworks.com/matlabcentral/answers/2032314-3d-plot-for-polynomial#comment_2919399
If you are not asking that, please be more specific.

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

その他の回答 (1 件)

Image Analyst
Image Analyst 2023 年 10 月 16 日

0 投票

That's a 1-D polynomial curve. There is one independent input variable. You can define the range of it with linspace and then use plot
x = linspace(-3, 3, 1000);
y = 6*x.^5 + 5*x.^4;
plot(x, y, 'b-', 'LineWidth', 2);
grid on;
xlabel('x');
ylabel('y');
To learn other fundamental concepts, invest 2 hours of your time here:

1 件のコメント

Durga thiyanesh
Durga thiyanesh 2023 年 10 月 17 日
thanks for your answer

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

カテゴリ

製品

リリース

R2023b

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by