⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dddyaddown.m

📁 function [beta,alfa] = AIDyadDown(afine,D,F,EF) % AIDyadDown -- Average-Interpolating DownSampling
💻 M
字号:
function [beta,alfa] = DDDyadDown(afine,D,F,LEF,REF)
% DDDyadDown -- Deslauriers-Dubuc Interpolating DownSampling Operator
%  Usage
%    [beta,alfa] = DDDyadDown(afine,D,F,LEF,REF)
%  Inputs
%    afine   fine-scale samples
%    D       degree of polynomial fit in  DD interpolation
%    F       filter implementing DD-interpolation
%    LEF     Left edge filter for DD-interpolation
%    REF     Right edge filter for DD-interpolation
%  Outputs
%    beta    coarse-scale samples
%    alfa    detail corrections
%
%  Description
%    Splits information afine on fine scale samples into coarse
%    scale samples beta and gen. midpoint deflections alfa.
%
%  See Also
%    IWT_DD, DDRefine, MakeDDFilter
% 
	
	n = length(afine);
	acoarse = afine(1:2:(n-1));
	ahat = DDRefine(acoarse,D,F,LEF,REF);
	adif = afine - ahat;
	alfa = sqrt(2) .* adif(2:2:n);
	beta = sqrt(2) .* acoarse;
    
    
%
% For Article "Interpolating Wavelet Transforms"
% Copyright (c) 1993. David L. Donoho
%
    
    
    
%   
% 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 + -