fastposynthesis.m

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

M
24
字号
function x = FastPOSynthesis(c, par1, par2, par3)
% FastPOSynthesis -- Fast Synthesis Operator for Periodized-Orthognal
%			Wavelets Dictionary
%  Usage:
%	x = FastPOSynthesis(c, L, qmf)
%  Inputs
%    c    1-d wavelet transform of x.
%    L    Coarsest Level of V_0;  L << J
%    qmf  quadrature mirror filter (orthonormal)
%  Outputs
%    x    1-d signal; length(x) = 2^J
%
%  Description
%    1. qmf filter may be obtained from MakeONFilter   
%    2. usually, length(qmf) < 2^(L+1)
% 
%  See Also
%    FastPOAnalysis, FWT_PO, IWT_PO, MakeONFilter
%

n = length(c);
x = IWT_PO(c, par1, par2);
x = x(:);

⌨️ 快捷键说明

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