Create an m-script file to plot the following functions separately

3 次查看(过去 30 天)
I am trying to plot the following function in Matlab. y=x^3+2x^2-6x with x having bounds of 0 to 30 (0:30)
I am using the following code and below is the error message I am receiving x=0:30; >> plot(x,'x.^3+2x.^2-6x'),grid Error using plot Error in color/linetype argument
If someone could please help me to fix this error and/or see the error in my function I would appreciate it.

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-1-27
编辑:Azzi Abdelmalek 2014-1-27
x=0:30;
plot(x,x.^3+2*x.^2-6*x)
grid
xlabel('x')
ylabel('y')
title('y=x.^3+2*x.^2-6*x')
For more details look at
doc plot

更多回答(1 个)

Rohit Naik
Rohit Naik 2021-8-28
X = [-10:10]; Y = tan^-1(X) Plot(X,Y)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by