Why is my plot not showing anything?

1 次查看(过去 30 天)
x = -3:0.01:5;
y = ((x+5).^2)/(4+3*x.^2);
plot(x,y)

采纳的回答

James Tursa
James Tursa 2018-2-1
Use element-wise division:
y = ((x+5).^2)./(4+3*x.^2);
  2 个评论
Image Analyst
Image Analyst 2018-2-1
Dustin, you can also thank him by Accepting his answer, and voting for it, to give him reputation points.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Log Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by