Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Please help me make this easy plot work
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
- f = exp(-0.5*x^2);
- t = 0.5;
- g_t = exp(-x-3t).^2;
- h_t = exp(-x.^2+t).^2;
- figure
- hold all
- plot(f,’r’)
- plot(g_t)
- plot(h_t,’g’)
- xlim([25 60])
- grid on
Error: File: plusen.m Line: 3 Column: 15 Unexpected MATLAB expression.
0 comentarios
Respuestas (1)
Ben11
el 27 de Oct. de 2014
Editada: Ben11
el 27 de Oct. de 2014
Please format your code in the question.
The error occurs because MATLAB does not recognize 3t as an expression. You need to use 3*t. (and define x as well but I guess you did it). And don't forget to use element-wise operations when dealing with arrays (eg .^ instead of ^ only).
0 comentarios
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!