⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fastpbssynthesis.m

📁 % Atomizer Main Directory, Version .802 里面信号含有分解去噪合成过程的代码 %---------------------------------------
💻 M
字号:
function x = FastPBSSynthesis(c, par1, par2, par3)
% FastPBSSynthesis -- Fast Wavelet(periodized,bi-orthogonal,symmetric) 
%			Synthesis Operator
%  Usage:
%	x = FastPBSSynthesis(c, L, qmf, dqmf)
%  Inputs
%    c		1-d wavelet transform: length(wc)= 2^J.
%    L      	Coarsest scale (2^(-L) = scale of V_0); L << J;
%    qmf    	quadrature mirror filter
%    dqmf   	dual quadrature mirror filter (symmetric, dual of qmf)
%  Outputs
%    x      	1-d signal reconstructed from c
%
%  Description
%    1. qmf filter may be obtained from MakeBSFilter   
%    2. usually, length(qmf) < 2^(L+1)
%    3. To reconstruct use IWT_PBS
%
%  See Also
%    FastPBSAnalysis, FWT_PBS, IWT_PBS, MakeBSFilter
%

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

⌨️ 快捷键说明

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