📄 separate_frame.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 + -