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

📄 dddyadup.sci

📁 小波分解源代码
💻 SCI
字号:
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
// 
//  Copyright Aldo I Maalouf

	n = length2(beta);
	ahat = DDRefine(beta,D,F,LEF,REF);
	adif =  [zeros(1,n) ; alfa ]; adif = adif(:)';
	afine = ahat + adif;
	afine = afine ./sqrt(2);
	endfunction

⌨️ 快捷键说明

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