Are not all symmetric invertible matrices positive semidefinite??

4 次查看(过去 30 天)
Hi,
I remember to learn that a symmetric matrix is positive semidefinite if and only if it is invertible. But the matrix 'covmat' in the .mat file that you can download using the below link is symmetric, invertible, but not positive semidefinite.
After loading ask.mat, you can try below code portions to check what I am saying.
issym(covmat); % you will get answer 1
inv(covmat); % you will get no error
mvnrnd(zeros(110, 1), covmat, 20); % you will get the error below:
??? Error using ==> mvnrnd at 118
SIGMA must be a symmetric positive semi-definite matrix.
How can it be possible? What is wrong with this matrix? Do I have some wrong knowledge of matrix properties of invertibleness, positive semidefiniteness, etc.?
Thanks!

采纳的回答

the cyclist
the cyclist 2013-5-21
Your memory is incorrect. Consider the following matrix:
a = [ 1.0 0.8 -0.8;
0.8 1.0 0.8;
-0.8 0.8 .01]
It is not positive semi-definite (because it has a negative eigenvalue). However, it is symmetric and invertible. (It has non-zero determinant).

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by