Error using plot ; spectrum of function
3 views (last 30 days)
Show older comments
geometry geometry
on 1 Nov 2017
Commented: geometry geometry
on 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 Comments
Accepted Answer
Walter Roberson
on 1 Nov 2017
plot(w, subs(h))
3 Comments
Walter Roberson
on 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.
More Answers (1)
See Also
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!