필터 지우기
필터 지우기

Regarding loudness based gain adjustment in gammatone filter

조회 수: 2 (최근 30일)
Hemangi
Hemangi 2015년 8월 6일
편집: Walter Roberson 2015년 8월 6일
While studying the gammatone filter I came across the following code on mathworks website. I want to know the formula for gain & gt functions. Which literature can be referred to understand these two lines in the code?
% Generating gammatone impulse responses with middle-ear gain normalization
gt = zeros(numChan,gL); % Initialization
tmp_t = [1:gL]/fs;
for i = 1:numChan
gain = 10^((loudness(cf(i))-60)/20)/3*(2*pi*b(i)/fs).^4; % loudness-based gain adjustments
gt(i,:) = gain*fs^3*tmp_t.^(filterOrder-1).*exp(-2*pi*b(i)*tmp_t).*cos(2*pi*cf(i)*tmp_t+phase(i));
end

답변 (0개)

카테고리

Help CenterFile Exchange에서 Audio Processing Algorithm Design에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by