| Products & Services | Solutions | Academia | Support | User Community | Company |
| Download Product Updates | | | Get Pricing | | | Trial Software |
| Documentation → Wavelet Toolbox |
| Contents | Index |
Add lifting steps to lifting scheme
LSN = addlift(LS,ELS) returns the new lifting scheme LSN obtained by appending the elementary lifting step ELS to the lifting scheme LS.
LSN = addlift(LS,ELS,'begin') prepends the specified elementary lifting step.
ELS is either a cell array (see lsinfo)
or a structure (see liftfilt)
LSN = addlift(LS,ELS,'end') is equivalent to addfilt(LS,ELS).
If ELS is a sequence of elementary lifting steps, stored in a cell array or an array of structures, then each of the elementary lifting steps is added to LS.
For more information about lifting schemes, see lsinfo.
% Start from the Haar wavelet and get the % corresponding lifting scheme. lshaar = liftwave('haar'); % Visualize the obtained lifting scheme. displs(lshaar); lshaar = {... 'd' [ -1.00000000] [0] 'p' [ 0.50000000] [0] [ 1.41421356] [ 0.70710678] [] }; % Add a primal ELS to the lifting scheme. els = {'p',[-0.125 0.125],0}; lsnew = addlift(lshaar,els); displs(lsnew); lsnew = {... 'd' [ -1.00000000] [0] 'p' [ 0.50000000] [0] 'p' [ -0.12500000 0.12500000] [0] [ 1.41421356] [ 0.70710678] [] };
| Provide feedback about this page |
![]() | Functions — Alphabetical List | allnodes | ![]() |

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 |