What is the default normalization in plot of stft function in Short-time Fourier transform

조회 수: 25 (최근 30일)
I was using matlab to plot Short-time Fourier transform (STFT).
My code was as follows:
[y,Fs] = audioread('p226_001.wav');
a = downsample(y,3);
stft(a,16000,'Window',hanning(512),'OverlapLength',128,'FFTLength',512);
It returned the following plot
The I plotted the origional values using the following code
[y,Fs] = audioread('p226_001.wav');
a = downsample(y,3);
[s, f, t] = stft(a,16000,'Window',hanning(512),'OverlapLength',128,'FFTLength',512);
surf(t, f, abs(s), 'EdgeColor', 'none');view(0,90);
Plot in this case was as follows
It is clear that some normalization has been done on the values to make plot brighter.
I was wondering that what exact normalization has been done for the plot of stft?

채택된 답변

jibrahim
jibrahim 2022년 4월 19일
Hi Muhammad,
I beleive the plot you get with STFT uses log, so 20*log10(abs(S)+eps) is plotted.

추가 답변 (0개)

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by