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

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.

 Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 27 Jan. 2014
Bearbeitet: Azzi Abdelmalek am 27 Jan. 2014
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

2 Kommentare

Thank you. So for y=10sin(2x-3).... it would be 10*sin(2*x-3)?????

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Rohit Naik
Rohit Naik am 28 Aug. 2021

0 Stimmen

X = [-10:10]; Y = tan^-1(X) Plot(X,Y)

Kategorien

Mehr zu Line Plots finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by