フィルターのクリア

How to determine frequency components in a signal

2 ビュー (過去 30 日間)
Elysi Cochin
Elysi Cochin 2017 年 3 月 6 日
コメント済み: Walter Roberson 2017 年 3 月 6 日
How to determine the different dominant frequency components in a signal (for the whole signal duration and for specific periods)? Signal is of dim (400 x 1)

採用された回答

Walter Roberson
Walter Roberson 2017 年 3 月 6 日
  4 件のコメント
Elysi Cochin
Elysi Cochin 2017 年 3 月 6 日
編集済み: Elysi Cochin 2017 年 3 月 6 日
any example you can show me... i havent used it....
spectrogram(signal) and fft(signal), gives me a complex value? what does it mean? how can i relate it to time period
Walter Roberson
Walter Roberson 2017 年 3 月 6 日
mask = time >= beginning_of_period & time <= end_of_period;
selected_samples = samples(mask);
fft_of_selected = fft(selected_samples);
"spectrogram(signal), gives me a complex value?"
Yes. spectrogram does a series of discrete fourier transforms (fft). fft() of a real-valued signal is going to be complex except in the case that the signal is made up of pure sine tones that all started at the first sample. The complex portion of the entries express phase information.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSpectral Measurements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by