| Products & Services | Solutions | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → Wavelet Toolbox |
| Contents | Index |
Split (decompose) wavelet packet
wpsplt is a one- or two-dimensional wavelet packet analysis function.
wpsplt updates the wavelet packet tree after the decomposition of a node.
T = wpsplt(T,N) returns the modified wavelet packet tree T corresponding to the decomposition of the node N.
For a one-dimensional decomposition,
[T,cA,cD] = wpsplt(T,N) with cA = approximation and cD = detail of node N.
For a two-dimensional decomposition,
[T,cA,cH,cV,cD] = wpsplt(T,N) with cA = approximation and cH,cV,c = horizontal, vertical, and diagonal details of node N.
% The current extension mode is zero-padding (see dwtmode). % Load signal. load noisdopp; x = noisdopp; % Decompose x at depth 3 with db1 wavelet packets. wpt = wpdec(x,3,'db1'); % Plot wavelet packet tree wpt. plot(wpt)% Decompose packet (3,0). wpt = wpsplt(wpt,[3 0]); % or equivalently wpsplt(wpt,7). % Plot wavelet packet tree wpt. plot(wpt)
| Provide feedback about this page |
![]() | wprec2 | wpthcoef | ![]() |

Includes the most popular MATLAB recorded presentations with Q&A sessions led by MATLAB experts.
| © 1984-2009- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |