- https://www.mathworks.com/help/matlab/ref/chol.html
- https://www.mathworks.com/help/matlab/ref/cholupdate.html?searchHighlight=cholupdate&s_tid=srchtitle_support_results_1_cholupdate
Numerical issues with UKF and SR-UKF
4 views (last 30 days)
Show older comments
Error using cholupdate
Downdated matrix must be positive definite.
Error in Copy_2_of_UKF_Case1 (line 311)
S{k} = cholupdate((Sm{k}),U(:,i),'-');
0 Comments
Answers (1)
Vinay
on 13 Aug 2024
Hii Oussama ,
The “chol” function in the MATLAB does the Cholesky factorization of the matrix. The matrix must be symmetric positive definite for Cholesky factorization, but in the code the matrix “Rx” is not symmetric positive definite causing the error in factorization.
Sm{k} = cholupdate(Rx,Wc(1)*(xhi{k}(:,1)-xhm{k}),'-')';
The flag output of the “chol” function indicates the index of the pivot position where the factorization failed.
% flag to check the position where pivot failed
[R,flag] = chol(Rx)
The following function check whether matrix is positive definite.
try chol(Rx)
disp('Matrix is symmetric positive definite.')
catch ME
disp('Matrix is not symmetric positive definite')
end
The error is due to the "Rx" matrix which is not symmetric positive definite causing error in the "Sm{K}" calculation
You can refer to the following documentations for “chol” and “cholupdate”:
I hope this helps!
0 Comments
See Also
Categories
Find more on Linear Algebra in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!