perform_alpert_transform_1d.m
来自「matlab的工具箱」· M 代码 · 共 19 行
M
19 行
function [w,info] = perform_alpert_transform_1d(v,pos,k, dir, options)
% perform_alpert_transform_1d - transform a 1D signal using a 1D Alpert basis.
%
% [w,info] = perform_alpert_transform_1d(v,pos,k, dir, options);
%
% 'v' is a 1D vector, the valued to transform.
% 'pos' is a 1D vector, pos(i) is the ith point.
% 'k' is the number of vanishing moments (1=>Haar, 2=>linear basis ...).
% 'dir' is 1 for fwd transform and -1 for bwd.
%
% 'w' is the transformed data.
% 'info' is a struct containing the localisation information for each
% basis Alpert vector.
% 'info.l' is the scale of the vector (0=coarse scale).
% 'info.n' is the space location of the vector.
% 'info.k' is the number of multiwavelet (in [1,...,k(1)*k(2)]).
%
% Copyright (c) 2004 Gabriel Peyr
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?