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

📄 scalel.m

📁 ofdm是比较常用的调制方式
💻 M
字号:

%**************************************************************
%scalel: compute the quantizer scale factor in the lower or upper
%sub-band
%**************************************************************%
            function y= scalel( nbl,shift_constant)
            table_set;
            b=fi(nbl);
            wd1=bitand(uint16(bitshift(b,-6)),uint16(31));
            wd2 = bitshift(b,-11);
           wd3 = bitshift(uint16(ilb_table(wd1+1)),uint16((shift_constant + 1 - wd2)));
           wd3=bitshift(wd3,3);
           y=double(wd3);

⌨️ 快捷键说明

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