dddyadup.m

来自「function [beta,alfa] = AIDyadDown(afine,」· M 代码 · 共 38 行

M
38
字号
function afine = DDDyadUp(beta,alfa,D,F,LEF,REF)
% DDDyadUp -- Interpolating UpSampling Operator
%  Usage
%    afine = DDDyadUp(beta,alfa,D,F,LEF,REF)
%  Inputs
%    beta    coarse-scale samples
%    alfa    midpoint deflections
%    D       degree of polynomial fit in interpolation
%    F       filter implementing DD-interpolation
%    LEF     left edge filter of DD-interpolation
%    REF     right edge filter of DD-interpolation
%  Outputs
%    afine   fine-scale samples
%
%  Description
%    Implements the Coarse-to-Fine phase of the interpolating
%    Wavelet Transform. Takes coarse scale samples and midpoint
%    corrections and synthesizes fine-scale samples.
%
%  See Also
%    IWT_DD, DDRefine, MakeDDFilter
% 
	n = length(beta);
	ahat = DDRefine(beta,D,F,LEF,REF);
	adif =  [zeros(1,n) ; alfa ]; adif = adif(:)';
	afine = ahat + adif;
	afine = afine ./sqrt(2);
    
    
%   
% Part of WaveLab Version 802
% Built Sunday, October 3, 1999 8:52:27 AM
% This is Copyrighted Material
% For Copying permissions see COPYING.m
% Comments? e-mail wavelab@stat.stanford.edu
%   
    

⌨️ 快捷键说明

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