Can not plot, please help

x = 0:1:10
y = (15*x)/(4*x.^2-3*x+4)
plot(x,y)
why can't i plot this? please help me.

 采纳的回答

It is plotting, it's just only plotting a single point. The matrix division of a 1x11 vector by a 1x11 vector is a scalar.
ones(1,10)/ones(1,10)
You probably meant for element-by-element division
ones(1,10)./ones(1,10)
And thus your defintion of y:
y = (15*x)./(4*x.^2-3*x+4)
look at
doc vectorize
to avoid these issues in the future.

更多回答(0 个)

类别

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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by