Error using plot ; spectrum of function
2 ビュー (過去 30 日間)
古いコメントを表示
geometry geometry
2017 年 11 月 1 日
コメント済み: geometry geometry
2017 年 11 月 2 日
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 件のコメント
採用された回答
Walter Roberson
2017 年 11 月 1 日
plot(w, subs(h))
3 件のコメント
Walter Roberson
2017 年 11 月 1 日
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.
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Calculus についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!