About Implementing a AGC

9 次查看(过去 30 天)
I am trying to Implement AGC,After demodulator block i am using AGC Block.When i have given input to my AGC it is multiplying every sample with the same gain but agc should be choose the which sample has to be multiplied with what amount of gain.so what logic is usefull for me to wirte so that my AGC can choose the gain according to the sample...
  5 个评论
Dimitris Kalogiros
Dimitris Kalogiros 2020-3-26
Dear Shilpa
Allow me to ask: Your problem is with simulink implementation or you feel that you don't have understood the functionality of an agc loop ?
shilpa kamble
shilpa kamble 2020-3-26
sir, I have problem with simulink implementation.Atcually I m tring to do implement the AGC to adjust gain of AGC to have an constant signal level output.

请先登录,再进行评论。

采纳的回答

Dimitris Kalogiros
Dear Hari
Here you are a simple version of a "feedback" structured AGC
clearvars; clc;
%% time instances
dt=0.001
t=0:dt:20;
%% input signal
A=10; f=0.25;
xin=A*sin(2*pi*f.*t);
%% AGC parameters
% loop filter gain
L=round(10*f*(1/dt));
% Target power
powerTarget=0.2;
%% AGC process
yout=zeros(1,length(xin));
gainAGC=ones(1,length(xin));
for n=1:length(t)
% amplify current input sample
yout(n)=gainAGC(n)*xin(n);
% adjust agc gain, with feedback branch
gainAGC(n+1)=gainAGC(n)*(1 - (1/L)*(yout(n)^2-powerTarget) );
end
%% Plot input and output
figure;
subplot(2,1,1);
plot(t, xin, '-b'); hold on;
plot(t, yout, '-r'); zoom on; grid on;
xlabel('t in sec'); ylabel('amplitude');
legend('xin', 'yout'); title('AGC input and output');
subplot(2,1,2);
plot(t, gainAGC(1:end-1)); zoom on; grid on;
title('gain of AGC');
I have choosen a very simple version of gain adaptation.
Keep in mind that parameter L controls the speed of AGC lock. Large values of L leads to a fast but noisy convergence.
If you run this code, with the parameters I've choosen, you will get the following results:
agc.png
  2 个评论
Hari Ijjada
Hari Ijjada 2019-9-7
But i want to give voice signal as input....whem i am giving voice sigal how to calculate the value of L ?..
if possible can you tell me how to apply AGC to voice input..
Dimitris Kalogiros
It depents on your sampling rate. For example, suppose you have voice signal , sampled at Fs. You can set L=100*Fs or L=1000*Fs (Fs is expressed in Hz)
By the way, you can experiment on the value of L.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Digital Filter Analysis 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by