Error using plot ; spectrum of function

1 visualización (últimos 30 días)
geometry geometry
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);

Respuesta aceptada

Walter Roberson
Walter Roberson el 1 de Nov. de 2017
plot(w, subs(h))
  3 comentarios
Walter Roberson
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.
geometry geometry
geometry geometry el 2 de Nov. de 2017
Yes thanks! I'm sorry it works fine. (I was using fplot instead of plot).

Iniciar sesión para comentar.

Más respuestas (1)

Karan Gill
Karan Gill el 1 de Nov. de 2017
Plot symbolic functions by using fplot.
fplot(h)
  1 comentario
geometry geometry
geometry geometry el 1 de Nov. de 2017
Thanks but it doesn't plot spectrum of f(t) correctly. I want to plot the spectrum of arbitrary function for example exp(-t^2) , dirac(t), ...
could you help me?

Iniciar sesión para comentar.

Categorías

Más información sobre Line Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by