フィルターのクリア

Computing spectrogram using STFT

2 ビュー (過去 30 日間)
Ritesh Chandra Tewari
Ritesh Chandra Tewari 2021 年 4 月 24 日
コメント済み: Star Strider 2021 年 4 月 24 日
I have Radar motion data. There are two columns time and amplitude. Can someone help, how to find spectrogram of raw signal using STFT. For the reference I am uploading a sample image, what I exactly need.

回答 (1 件)

Star Strider
Star Strider 2021 年 4 月 24 日
Use the pspectrum function with the 'spectrogram' option.
  2 件のコメント
Ritesh Chandra Tewari
Ritesh Chandra Tewari 2021 年 4 月 24 日
can you please help me with code. Let x be the data matrix containing two columns, 1st column represents time and 2nd column represents amplitude of the radar signal.
Star Strider
Star Strider 2021 年 4 月 24 日
The documentation explains it better than I can.
Prototype code would be:
pspectrum(2nd_column, 1st_column, 'spectrogram')
or:
[p,f,t] = pspectrum(2nd_column, 1st_column, 'spectrogram');
Beyond that, you will have to experiment with your data to get the result you want. See the documentation for details.

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

カテゴリ

Help Center および File ExchangeTime-Frequency Analysis についてさらに検索

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by