How do I plot this graph?
이전 댓글 표시
y=(11*x+2)/(2*x^3-1);
댓글 수: 1
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개)
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!

