⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list.10.txt

📁 This archive contains circuit diagram and text documents making up the design of audio spectrum anal
💻 TXT
字号:
//*****************************************
//  Butterfly function
//  Input, output: x, y
//  x <- x + Wn[k]*y
//  y <- x - Wn[k]*y
//*****************************************
void Butterfly(cplx *x, cplx *y, int k)
{
        cplx tx,ty,tWy;

        tWy=cplx_mul(Wn[k],*y);
        tx=cplx_add(*x,tWy);
        ty=cplx_sub(*x,tWy);

        *x=tx;
        *y=ty;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -