fasttiwtsynthesis.m

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

M
19
字号
function x = FastTIWTSynthesis(c, D, qmf, par3)
% FastTIWTSynthesis -- Synthesis operator for Translation Invariant Wavelet Packet dictionary
%  Usage:
%	x = FastTIWTSynthesis(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:
%	TIWTAnalysis, TIWTSynthesis, FastTIWTAnalysis

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

⌨️ 快捷键说明

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