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.

 Accepted Answer

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.

More Answers (0)

Categories

Community Treasure Hunt

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

Start Hunting!