资源简介
能量算子解调,可以直接使用。如y=teager(x)x为待处理信号
代码片段和文件信息
function t = teager(xn)
% function t = teager(xn)
% The Teager-Kaiser energy operator n‘th order approximation. Omission of n
% sets n=0
if nargin == 1
n = 0;
end
if n == 0
if isobject(x)
t = x.s(2:end-1).^2 - x.s(1:end-2).*x.s(3:end);
tim = x.time;
tim = set(tim ‘num‘ tim.num-2 ‘begin‘ tim.begin+(1./ti
- 上一篇:PMX算法MATLAB实现
- 下一篇:串级PID仿真
评论
共有 条评论