Error using plot ; spectrum of function
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
geometry geometry
le 1 Nov 2017
Commenté : geometry geometry
le 2 Nov 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 commentaires
Réponse acceptée
Walter Roberson
le 1 Nov 2017
plot(w, subs(h))
3 commentaires
Walter Roberson
le 1 Nov 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.
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Calculus dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!