Apply Make-up Gain

3 ビュー (過去 30 日間)
Khaled Abdellatif
Khaled Abdellatif 2019 年 9 月 2 日
回答済み: jibrahim 2019 年 9 月 4 日
Hi all,
is it right that I can use the Apply Make-up Gain in the dynamic range compressor to add any specific gain to my signal?
I kind of see the opposite so when I set it to 10dB, then the output signal gain decreases by 10dBFS?

回答 (1 件)

jibrahim
jibrahim 2019 年 9 月 4 日
Hi Khaled,
The make-up gain is added to the gain computed by the compressor.
Let's call your signal x, and the (computed, in dB) gain to be applied to your signal G. If make-up gain is zero dB, then your output is:
in_gain = 10.^(G /20);
y = x .* lin_gain;
If you pecify a non-zero make-up gain, G_makeup, then your output will be:
G = G + G_makeup; % in dB
in_gain = 10.^(G /20);
y = x .* lin_gain;

カテゴリ

Help Center および File ExchangeAudio Processing Algorithm Design についてさらに検索

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by