Create an m-script file to plot the following functions separately
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (1)
Rohit Naik
el 28 de Ag. de 2021
0 votos
X = [-10:10]; Y = tan^-1(X) Plot(X,Y)
1 comentario
Walter Roberson
el 28 de Ag. de 2021
MATLAB does not support that notation for arctangent
Categorías
Más información sobre Line Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!