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.

 채택된 답변

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

댓글 수: 2

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

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Rohit Naik
Rohit Naik 2021년 8월 28일

0 개 추천

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

카테고리

도움말 센터File Exchange에서 Line Plots에 대해 자세히 알아보기

질문:

2014년 1월 27일

댓글:

2021년 8월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by