Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

wmulden using previous calculated parametes

조회 수: 1 (최근 30일)
Emiliano Rosso
Emiliano Rosso 2017년 4월 10일
마감: MATLAB Answer Bot 2021년 8월 20일
When I apply wmulden to an array A I obtain an array B with denoised signal:
level = 4;
wname = 'sym2';
tptr = 'heursure';
sorh = 's';
mode = 'asym';
SCAL ='mln';
npc_app = 'none';
npc_fin = 'none';
[B, npc, nestco] = wmulden(A, level,wname,'mode',mode, npc_app, ...
npc_fin, tptr, sorh);
If I change only one of all the data in array A the calculated array B is totally different in every single data.
[n,m]=size(A);
A(n-100,1:m)=A(n-100,1:m)+rand(1,1:m)*0.1;
[B2, npc, nestco] = wmulden(A, level,wname,'mode',mode, npc_app, ...
npc_fin, tptr, sorh);
I need :
B(1:n-101,1:m) = B2(1:n-101,1:m) && B(1:n-99,1:m) = B2(1:n-99,1:m)
and
B2(1:n-100,1:m)
is correctly denoised.
I ask if is possible to use the parameters calculated previously to apply them with wmulden only to the changed data preserving the unchanged data.
Thanks!

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by