필터 지우기
필터 지우기

Info

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

How to use Wald Sequence detection method to test the filtering residual?

조회 수: 1 (최근 30일)
dab483
dab483 2014년 2월 17일
마감: dab483 2014년 2월 17일
Hi,
I have this EKF Equation.
PMinus(:,:,i) = A(:,:,i)*P(:,:,i)*A(:,:,i)'+ Q(:,:,i);
xhat(:,:,i+1) = Fs(xhat(:,:,i),u(:,:,i),wp(:,:,i),dt);
K(:,:,i) = PMinus(:,:,i)*H'*(H*PMinus(:,:,i)*H'+R)^-1;
xhat(:,:,i+1) = xhat(:,:,i+1)+K(:,:,i)*(y(:,:,i+1)-H*xhat(:,:,i+1));
P(:,:,i+1) = (eye(4)-K(:,:,i)*H)*P(:,:,i);
Now I need to use Wald Sequence detection method to test the filtering residual, r=y-H*xhat. to observe if the residual contain any fault information where its distribution N(m,sg^2) The general simplified decision law of wald sequence is:
Ly(n-1)=Ly(n) + m/sg^2*[r(n)-0.5m]
Any one can help me to code it to use with my above equation? Thanks.

답변 (0개)

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by