fastwpsynthesis.m

来自「% Atomizer Main Directory, Version .802 」· M 代码 · 共 20 行

M
20
字号
function x = FastWPSynthesis(c, D, qmf, par3)
% FastWPSynthesis -- Synthesis operator for Wavelet Packet dictionary
%  Usage:
%	x = FastWPSynthesis(c, D, qmf)
%  Inputs:
%	c	the coefs, a column vector
%	D	the depth of wavelet packet
%	qmf	the quadrature mirror filter
%  Outputs:
%	x	the synthesized signal, a column vector
%  See Also:
%	FastWPAnalysis, WPAnalysis, FWPSynthesis
%

m = length(c);
L = D + 1;
pkt = reshape(c, m/L, L);
x = FWPSynthesis(pkt, qmf);
x = x(:);

⌨️ 快捷键说明

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