📄 sbc.asv
字号:
function sbc
% main function of the program of voice-signal
% subband coding;input the number of the subbands
% according to the information.
clear command window;
n=input('请选择你所需要的子带数,你可以选择,2,4,8,16。\n输入0即可');
switch n
case 2
sbc2;
case 4 sbc4;
case 8
sbc8;
case 16
sbc16;
case 0
break;
otherwise
error('输入错误,重请试!\n你必须信息按照提示进行输入!','k');
%error('You have input a error number,try again!\nYou must input according the requirement!','k');
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -