Error using plot ; spectrum of function
Afficher commentaires plus anciens
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);
Réponse acceptée
Plus de réponses (1)
Karan Gill
le 1 Nov 2017
Plot symbolic functions by using fplot.
fplot(h)
Catégories
En savoir plus sur Line Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
