Error using plot ; spectrum of function
Mostrar comentarios más antiguos
Why I get error using the following code?
syms t w;
syms g h;
g=fourier(exp(-1*(t^2)));
h=abs(g);
w=-10.1:10.1;
plot(w,h);
Respuesta aceptada
Más respuestas (1)
Karan Gill
el 1 de Nov. de 2017
Plot symbolic functions by using fplot.
fplot(h)
1 comentario
geometry geometry
el 1 de Nov. de 2017
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!
