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.
채택된 답변
추가 답변 (1개)
Rohit Naik
2021년 8월 28일
0 개 추천
X = [-10:10]; Y = tan^-1(X) Plot(X,Y)
댓글 수: 1
Walter Roberson
2021년 8월 28일
MATLAB does not support that notation for arctangent
카테고리
도움말 센터 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!