필터 지우기
필터 지우기

Liftscheme Integer 2 Integer Method

조회 수: 4 (최근 30일)
Dylan Tarter
Dylan Tarter 2023년 5월 30일
답변: Sharmin Kibria 2023년 6월 2일
In the old "liftwave" function, you can create a Le Gall 5/3 Wavelet lifting scheme that is integer based using "liftscheme = liftwave('cdf2.2','int2int');" but as liftwave if deprecated I want to know how to create the same scheme with liftscheme function. I could not find any documentation on integer transforms with liftscheme, any ideas?

답변 (1개)

Sharmin Kibria
Sharmin Kibria 2023년 6월 2일
Hi Dylan,
Thanks for reaching out.
You can create the lifiting scheme using the following command:
liftscheme = liftingScheme(Wavelet='cdf2.2');
You can then use the lifting transform:
[ca,cd] = lwt(x,LiftingScheme=liftscheme,Int2Int=true);
or use the following
[ca,cd] = lwt(x,Wavelet='cdf2.2',Int2Int=true);
I hope it helps.
Thanks
Sharmin

카테고리

Help CenterFile Exchange에서 Lifting에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by