How do I plot this graph?

y=(11*x+2)/(2*x^3-1);

1 件のコメント

John D'Errico
John D'Errico 2021 年 12 月 18 日
PLease stop posing your homework problems. This is the 4th one you have now posted, all with no effort made.

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

回答 (2 件)

Star Strider
Star Strider 2021 年 12 月 18 日

2 投票

One approach, using the Symbolic Math Toolbox —
syms x
y=(11*x+2)/(2*x^3-1);
figure
fplot(y, [-10, 10])
grid
.
Voss
Voss 2021 年 12 月 18 日

1 投票

Here's one way:
x = -10:0.01:10;
y = (11*x+2)./(2*x.^3-1);
plot(x,y);
ylim([-15 15]);

カテゴリ

ヘルプ センター および File ExchangeMathematics についてさらに検索

タグ

質問済み:

2021 年 12 月 18 日

コメント済み:

2021 年 12 月 18 日

Community Treasure Hunt

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

Start Hunting!

Translated by