フィルターのクリア

When reading a spectrogram, why is a power of 20 considered higher than 120

2 ビュー (過去 30 日間)
fadams18
fadams18 2022 年 9 月 7 日
コメント済み: fadams18 2022 年 9 月 7 日
Looking at the spectrogram below, it appears the higher power in the cyan color. but its power value is around 20.
why is this the case? does lower value mean big power?

回答 (1 件)

Walter Roberson
Walter Roberson 2022 年 9 月 7 日
Those are not 20 and 120: those are -20 and -120 .
  1 件のコメント
fadams18
fadams18 2022 年 9 月 7 日
I did a similar plot with a different signal. but my colorbar seems to be inverted. or u reckon its the right way?
[S, feqStft, timeStft] = MyStft(x,win,hop, nfft, fs);
magStft = abs(S);
imagesc(timeStft, feqStft, mag2db(magStft));
colorbar;
set(gca, 'YDir', 'normal');
title('Original Spectrogram of Signal ');
xlabel(['Time (0 - ', num2str(timeStft(end)), ' seconds)']);
ylabel(['Freq (0 - ', num2str(feqStft(end)), ' Hz)']);

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by