perform_wavelet_transform_isotropic.m

来自「小波提升算法的实现」· M 代码 · 共 18 行

M
18
字号
function y = perform_wavelet_transform_isotropic(x,J,options)

% perform_wavelet_transform_isotropic - multidimensional isotropic wavelet transform (aka classical ND transform).
% 
%   y = perform_wavelet_transform_isotropic(x,J,options);
%
%   Perform a isotropic transform of the array x, on J scale.
%   'x' can be of any dimension. Recalls that the results 
%   are computed 'in place', not using Mallat's ordering.
%   Please see 'fwt_lifting' for an overview of what 
%   'in place' means in 1D.
%
%   'options' is an (optional) structure that can contain:
%       - 'verb' : control verbosity.
%       - 'type' : the type of 1D wavelet transform used (a string), e.g.
%           'perform_79_transform'.
%
%   Copyright (c) 2003 Gabriel Peyr

⌨️ 快捷键说明

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