faststatsynthesis.m
来自「% Atomizer Main Directory, Version .802 」· M 代码 · 共 20 行
M
20 行
function x = FastSTATSynthesis(c, D, qmf, par3)
% FastSTATSynthesis -- Synthesis operator for Stationary Wavelet Dictionary
% Usage:
% x = FastSTATSynthesis(c, D, qmf, par3)
% 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:
% FastSTATAnalysis, TIWTAnalysis, TIWTSynthesis, TI_2_Stat, Stat_2_TI
m = length(c);
L = D + 1;
pkt = reshape(c, m/L, L);
pkt = Stat2TI(pkt);
x = TIWTSynthesis(pkt, qmf);
x = x(:);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?