blob: 56f61967b1c2ead3a4a6f51a19cfdfd728073e09 (
plain)
1
2
3
4
5
6
7
8
9
|
function b = isposdef(a)
% ISPOSDEF Test for positive definite matrix.
% ISPOSDEF(A) returns 1 if A is positive definite, 0 otherwise.
% Using chol is much more efficient than computing eigenvectors.
% From Tom Minka's lightspeed toolbox
[R,p] = chol(a);
b = (p == 0);
|