framebounds
DWT filter bank frame bounds
Syntax
Description
Examples
DWT Filter Bank Frame Bounds
Obtain the frame bounds for the orthogonal Daubechies db6
wavelet.
wv = 'db6'; fb = dwtfilterbank('Wavelet',wv)
fb = dwtfilterbank with properties: Wavelet: 'db6' SignalLength: 1024 Level: 6 SamplingFrequency: 1 FilterType: 'Analysis' CustomWaveletFilter: [] CustomScalingFilter: []
[a,b] = framebounds(fb)
a = 1.0000
b = 1.0000
The filter bank has the default filter type Analysis
. Create a second filter bank using the same orthogonal wavelet but with the filter type Synthesis
. Obtain the frame bounds of this filter bank, which are equal to the previous frame bounds.
fbSynthesis = dwtfilterbank('Wavelet',wv,'FilterType','Synthesis'); [a2,b2] = framebounds(fbSynthesis)
a2 = 1.0000
b2 = 1.0000
Create a filter bank for the biorthogonal bior3.9
wavelet. Obtain the frame bounds. The frame bounds are not equal to 1.
wv = 'bior3.9'; fbA = dwtfilterbank('Wavelet',wv); [c,d] = framebounds(fbA)
c = 0.6250
d = 3.2982
Create a second filter bank using the same biorthogonal wavelet but with the filter type Synthesis
. Obtain the frame bounds of this filter bank. Since the wavelet is biorthogonal, the frame bounds change.
fbASynthesis = dwtfilterbank('Wavelet',wv,'FilterType','Synthesis'); [c2,d2] = framebounds(fbASynthesis)
c2 = 0.5502
d2 = 2.0015
Input Arguments
fb
— Discrete wavelet transform filter bank
dwtfilterbank
object
Discrete wavelet transform (DWT) filter bank, specified as a dwtfilterbank
object.
Output Arguments
Version History
Introduced in R2018a
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.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- 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)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)