ls2filt
Description
Examples
Create a lifting scheme associated with the db4 wavelet.
wv = 'db4'; lsc = liftingScheme('Wavelet',wv);
Use ls2filt to extract from the lifting scheme the corresponding wavelet filters. Compare with the filters generated by wfilters. Confirm they are equal.
[lod,hid,lor,hir] = ls2filt(lsc); [lod2,hid2,lor2,hir2] = wfilters(wv); tiledlayout(2,1) nexttile stem(lod) hold on stem(lod2,"x") hold off title("Lowpass Decomposition") legend("ls2filt","wfilters",Location="northwest") nexttile stem(hid) hold on stem(hid2,"x") hold off title("Highpass Decomposition") legend("ls2filt","wfilters")

figure tiledlayout(2,1) nexttile stem(lor) hold on stem(lor2,"x") hold off title("Lowpass Reconstruction") legend("ls2filt","wfilters") nexttile stem(hir) hold on stem(hir2,"x") hold off title("Highpass Reconstruction") legend("ls2filt","wfilters",Location="northwest")

Now create a lifting scheme associated with the bior2.2 wavelet.
wv = 'bior2.2'; lsc = liftingScheme('Wavelet',wv);
Use ls2filt to extract from the lifting scheme the corresponding wavelet filters. Compare with the filters generated by wfilters. Observe that wfilters includes the missing powers of the associated Laurent series as zeros so that all filters have equal even length. Except for the prepended and appended zeros, the filters coefficients generated by wfilters equal the coefficients returned by ls2filt.
[lod,hid,lor,hir] = ls2filt(lsc); [lod2,hid2,lor2,hir2] = wfilters(wv); fprintf('Lowpass Decomposition\n ls2filt: %s\nwfilters: %s\n', ... num2str(lod),num2str(lod2))
Lowpass Decomposition ls2filt: -0.17678 0.35355 1.0607 0.35355 -0.17678 wfilters: 0 -0.17678 0.35355 1.0607 0.35355 -0.17678
fprintf('Highpass Decomposition\n ls2filt: %s\nwfilters: %s\n', ... num2str(hid),num2str(hid2))
Highpass Decomposition ls2filt: 0.35355 -0.70711 0.35355 wfilters: 0 0.35355 -0.70711 0.35355 0 0
fprintf('Lowpass Reconstruction\n ls2filt: %s\nwfilters: %s\n', ... num2str(lor),num2str(lor2))
Lowpass Reconstruction ls2filt: 0.35355 0.70711 0.35355 wfilters: 0 0.35355 0.70711 0.35355 0 0
fprintf('Highpass Reconstruction\n ls2filt: %s\nwfilters: %s\n', ... num2str(hir),num2str(hir2))
Highpass Reconstruction ls2filt: 0.17678 0.35355 -1.0607 0.35355 0.17678 wfilters: 0 0.17678 0.35355 -1.0607 0.35355 0.17678
Input Arguments
Lifting scheme, specified as a liftingScheme object.
Output Arguments
Decomposition filters associated with the lifting scheme, returned as vectors.
lod is the lowpass decomposition filter. hid is
the highpass decomposition filter.
Data Types: double
Reconstruction filters associated with the lifting scheme, returned as vectors.
lor is the lowpass decomposition filter. hir is
the highpass decomposition filter.
Data Types: double
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
Version History
Introduced in R2021a
See Also
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
选择网站
选择网站以获取翻译的可用内容,以及查看当地活动和优惠。根据您的位置,我们建议您选择:。
您也可以从以下列表中选择网站:
如何获得最佳网站性能
选择中国网站(中文或英文)以获得最佳网站性能。其他 MathWorks 国家/地区网站并未针对您所在位置的访问进行优化。
美洲
- América Latina (Español)
- Canada (English)
- United States (English)
欧洲
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)