How to find the Fourier transform X(ω)
2 ビュー (過去 30 日間)
古いコメントを表示
Hello world!
I want to find the fourier transform X(ω) of these continuous signals x(t).
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/442368/image.png)
Also I want to find the inverse fourier transform of these signal X(ω).
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/442373/image.png)
In addition, for each of the above questions, draw the signals x(t) and the spectrums Χ(ω) respectively.
I run this code for first questions but it doesn't work. Can anyone help me?
t =(-1:0.01:1)';
u == unitstep = t>=0;
x = (t.*exp(-3*t)*sin(8*t))*u;
f = fourier(x);
plot(f)
0 件のコメント
採用された回答
Ameer Hamza
2020 年 12 月 3 日
fourier() works with symbolic inputs
syms t
x(t) = (t*exp(-3*t)*sin(8*t))*heaviside(t);
fourier(x)
5 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!