Error using plot ; spectrum of function
Ältere Kommentare anzeigen
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);
Akzeptierte Antwort
Weitere Antworten (1)
Karan Gill
am 1 Nov. 2017
Plot symbolic functions by using fplot.
fplot(h)
Kategorien
Mehr zu Line Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
