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

1 Kommentar

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

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Star Strider
Star Strider am 18 Dez. 2021

2 Stimmen

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 am 18 Dez. 2021

1 Stimme

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

Kategorien

Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 18 Dez. 2021

Kommentiert:

am 18 Dez. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by