Error using plot ; spectrum of function
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
geometry geometry
el 1 de Nov. de 2017
Comentada: geometry geometry
el 2 de Nov. de 2017
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);
0 comentarios
Respuesta aceptada
Walter Roberson
el 1 de Nov. de 2017
plot(w, subs(h))
3 comentarios
Walter Roberson
el 1 de Nov. de 2017
Worked fine when I tried on the code you posted.
If you have other code for calculating spectra then you should probably post that so we do not have to guess about what might not be working.
Más respuestas (1)
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!