📄 dddyadup.m
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -