How to add gain to an audio signal?

40 次查看(过去 30 天)
Hi,
I wanted to ask if there is a way to add gain to an audio signal using MATLAB?
For ex., I have an audio file, and I want to add ~30dB gain to the signal. How can I do that?
Thanks,
Gagan

采纳的回答

Star Strider
Star Strider 2022-5-29
Try this —
Fs = 44100;
t = linspace(0, Fs-1, Fs)/Fs;
s1 = sin(2*pi*t*15);
dB30 = db2mag(30)
dB30 = 31.6228
s2 = s1*dB30;
figure
plot(t, s1, 'DisplayName','Original')
hold on
plot(t, s2, 'DisplayName','Original With 30 dB Amplification')
hold off
grid
legend('Location','best')
.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Audio I/O and Waveform Generation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by