📄 cutoff.m
字号:
function is=cutoff(s,td)
% s is the signal
% td is the treshold when the signal smaller than it, the signal must be interpolat;
sp=find(abs(s)<td);
l=length(sp);
l1=length(s);
j=1;
l1-l
for i=1:l1
if abs(s(i))>=td
is(j)=s(i);
j=j+1;
end
end
%wn=rectwin(3);
%isp=conv(is,wn);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -