how to plot a graph of the equation (x^5)+(x^4)+(x^3)+(9*x^2)+8*x+3
4 次查看(过去 30 天)
显示 更早的评论
how to plot a graph of the equation (x^5)+(x^4)+(x^3)+(9*x^2)+8*x+3 in matlab, i have tried using the plot function but it is still not working out. i also need it in the range of -8<x<6
i have used x[-8:1:6] and y=(x^5)+(x^4)+(x^3)+(9*x^2)+8*x+3 plot (x,y,'r')
0 个评论
回答(3 个)
Azzi Abdelmalek
2014-3-26
coeff=[1 1 1 9 8 3] % the coefficients of your polynomial
x=-8:0.1:6
y=polyval(coeff,x)
plot(x,y,'r')
0 个评论
Joseph Cheng
2014-3-26
编辑:Joseph Cheng
2014-3-26
You'll need to include the element-wise power in your y equation. instead of just ^ you will need to use .^
y=(x.^5)+(x.^4)+(x.^3)+(9*x.^2)+8*x+3
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!