How do I plot this graph?

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

1 个评论

PLease stop posing your homework problems. This is the 4th one you have now posted, all with no effort made.

请先登录,再进行评论。

回答(2 个)

One approach, using the Symbolic Math Toolbox —
syms x
y=(11*x+2)/(2*x^3-1);
figure
fplot(y, [-10, 10])
grid
.
Here's one way:
x = -10:0.01:10;
y = (11*x+2)./(2*x.^3-1);
plot(x,y);
ylim([-15 15]);

类别

帮助中心File Exchange 中查找有关 Mathematics 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by