Add lifting steps to lifting scheme
LSN
= addlift(LS
,ELS
)
LSN
= addlift(LS
,ELS
,'begin')
LSN
= addlift(LS
,ELS
,'end')
addfilt(LS
,ELS
)
returns
the new lifting scheme LSN
= addlift(LS
,ELS
)LSN
obtained by
appending the elementary lifting step ELS
to
the lifting scheme LS
.
prepends
the specified elementary lifting step. LSN
= addlift(LS
,ELS
,'begin')
ELS
is either a cell array (see lsinfo
)
{TYPEVAL, COEFS, MAX_DEG}
or a structure (see liftfilt
)
struct('type',TYPEVAL,'value',LPVAL)
with
LPVAL = laurpoly(COEFS, MAX_DEG)
is
equivalent to LSN
= addlift(LS
,ELS
,'end')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
.