mallat_decomp.m

来自「用matlab实现的JPEG算法」· M 代码 · 共 27 行

M
27
字号
% --------------------------------------------------------
% mallat_d閏omp : d閏omposition d'un niveau en 
% coefficients d'ondelettes.
%
% utilisation :
%-------------
%
% [Mallat] = mallat_decomp(type_ondelette,R1LL) ;
%
% Mallat comprend les sous-bandes d'un niveau
% de r閟olution R2LL,R2LH,R2HL,R2HH 
%
% type_ondelette : 1= (5,3)
% 						 2= (9,7)
%
% -------voir aussi 'mallat_split' -----------------------

function [Mallat] = mallat_decomp(type_ondelette,R1LL) ;


type_transf = int16(type_ondelette) ;
NL = int16(1) ;
[M_coef] = FDWT(type_transf,NL,R1LL) ;
Mallat = DD_ARRANGE(NL,M_coef) ;


⌨️ 快捷键说明

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