• 大小: 7KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-05-20
  • 语言: Matlab
  • 标签: AGC  语音信号  

资源简介

语音信号AGC——自动增益控制 含matlab和c两种 含测试程序

资源截图

代码片段和文件信息

/******************************************************************************
**
** Function             : AGC()
**
** Description          : AGC algorithm is used to automatically adjust the 
**                        speech level of an audio signal to a predetermined 
**                        value noramally in db.
**
** Arguments:
**  float *x            : input vector (range from -1 to 1 )
**  float *y            : output vector (range from -1 to 1 )
**  float gain_level    : output power level in db
**  int   N             : number of samples or frame length
**
** Inputs:
**  float *x             
**  float gain_level    
**  int   N             
**
** Outputs:
**  float *y            
**
** Return value         : None
**
** NOTE                 : For more details refer matlab files. 
**
** Programmer           : Jaydeep Appasaheb Dhole
**                      : Associate Software Engineer ( DSP )
**                      : Aparoksha Tech. Pvt. Ltd. Bangalore.
**                      : http://www.aparoksha.com
**                      : 
**
** Date                 : 26 May 2006.
******************************************************************************/

#include

void  AGC(float *x float *y float gain_level int N)
{
    int i;
    float energy output_power_normal K;
    
    /* ouput power gain level is in db convert it into normal power */
    output_power_normal = (float)pow((double)10(double)(gain_level/10));

    /* Calculate the energy of the signal */
    energy = 0;
    for(i = 0; i < N; i++)
        energy += x[i] * x[i];

    /* calculate the multiplication factor */
    K = (float)sqrt ((output_power_normal*N)/energy);

    /* scale the input signal to achieve the required output power */
    for(i = 0; i < N; i++)
        y[i] = x[i] * K ;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2009-05-24 12:13  AGC\
     文件        1888  2006-05-26 13:11  AGC\AGC.c
     文件        7054  2006-06-01 19:37  AGC\AGC.m
     文件        2232  2006-05-10 17:52  AGC\data.mat
     文件        4288  2006-06-01 19:23  AGC\data2.mat
     文件        1790  2006-05-12 17:20  AGC\input.dat
     文件        2766  2006-05-26 13:10  AGC\main.c

评论

共有 条评论