Error using plot ; spectrum of function
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
geometry geometry
il 1 Nov 2017
Commentato: geometry geometry
il 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 Commenti
Risposta accettata
Walter Roberson
il 1 Nov 2017
plot(w, subs(h))
3 Commenti
Walter Roberson
il 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.
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Calculus in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!