how can I make this nonstationary signal's dft graph?

3 ビュー (過去 30 日間)
DOHYUN JANG
DOHYUN JANG 2019 年 11 月 15 日
コメント済み: DOHYUN JANG 2019 年 11 月 22 日
과제4 사진.pnghow can i make such a signal graph with 5hz, 20hz, 50hz and 1000 smapling frequency?

採用された回答

Prabhan Purwar
Prabhan Purwar 2019 年 11 月 21 日
Hi,
The following code illustrates a method to find DFT of a nonstationary signal.
a=1;
f=[5 20 50 1000];
for i=1:length(f)
t=linspace(0,0.3,2000);
y(i,:)=a*sin(2*pi*f(i)*t);
end
ynet=[y(1,:) y(2,:) y(3,:) y(4,:)];
plot(ynet);
yft=fft(ynet);
figure
L=length(yft);
f = 6.6667e+03*(0:(L/2))/L;
g=fftshift(abs(yft));
plot(f,g(4000:8000));
ft.JPG
Refer to the following link for further information:
  1 件のコメント
DOHYUN JANG
DOHYUN JANG 2019 年 11 月 22 日
thank you very much!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDiscrete Fourier and Cosine Transforms についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by