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

📄 separate_frame.m

📁 自己编写GUI界面实现语音增强
💻 M
字号:
function  y=separate_frame(x,n,num)
%this function complete separate frame;at same time,add a hanning window to y;
%x is the sequence will be separate;
%n is used to show how many frame will be separated;  
%num is used to show this frame is which order frame;
window=hanning(n);
for i=1:n,
   y(i)=x(num*n+i)*window(i);
end;

⌨️ 快捷键说明

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