about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/is_psd.m
blob: ff3baa542baa3c4922253ca3b65dc0fd0abf0c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
function b = positive_semidefinite(M)
%
% Return true iff v M v' >= 0 for any vector v.
% We do this by checking that all the eigenvalues are non-negative.

E = eig(M);
if length(find(E>=0)) == length(E)
  b = 1;
else
  b = 0;
end