imodwtj.m

来自「时间序列分析中很用的源码,书的原名为时间序列分析的小波方法.」· M 代码 · 共 64 行

M
64
字号
% imodwtj -- Compute inverse MODWT for jth level.%%****f* wmtsa.dwt/imodwtj%% NAME%   imodwtj -- Compute inverse MODWT for jth level.%% SYNOPSIS%   Vout = imodwtj(Wt_j, Vin, ht, gt, j)%% INPUTS%   Wt_j            - MODWT wavelet coefficients for jth level.%   Vin             - Scaling coefficients at J0, or j-1 level.%   ht              - MODWT avelet filter coefficients.%   gt              - MODWT Scaling filter coefficients.%   j               - Level of decomposition.%% OUTPUTS%   Vout            - MODWT scaling coefficients (residuals) for jth level.%% DESCRIPTION%   modwtj is a Mex-Function written in C, which implements the Pyramid Alogrithm%   of the MODWT for the jth level.  It is usually used as an internal function%   called by imodwt or imodwt_mra.%%   To compile, type:  mex modwtj.c%% EXAMPLE%   Vout = imodwtj(Wt_j, Vin, ht, gt, j);%% ALGORITHM%%% REFERENCES%   Percival, D. B. and A. T. Walden (2000) Wavelet Methods for%   Time Series Analysis. Cambridge: Cambridge University Press.%% SEE ALSO%   imodwt, imodwt_mra%% AUTHOR%   Charlie Cornish%   Brandon Whitcher%% CREATION DATE%   2003-05-01%% COPYRIGHT%%% CREDITS%   Based on the original function (imodwt.c) by Brandon Whitcher.%% REVISION%   $Revision: 612 $%%***%   $Id: imodwtj.m 612 2005-10-28 21:42:24Z ccornish $  

⌨️ 快捷键说明

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