chol() returns error even the matrix is positive definite.
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have a matrix
, where I is a
identity matrix and B is a
matrix. It is clear that M is a positive definite matrix. However, I am facing a situation in which the Matlab Cholesky decomposition function
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1220452/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1220457/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1220462/image.png)
chol(M);
returns an error stating that M must be positive definite. I examine matrix B and realise that it's elements are pretty small, resulting in the elements in matrix
are extreme large in magnitude (the magnitudes are about e+15 to e+17).
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1220467/image.png)
Any advice/suggestion how to handle this issue is much appreciated !
Update on 9 Dec 22:
To help explaning the issue more cleary, I attached the data containing the matrix. Please load the data 'example.mat' and run the code below
[p, r] = size(B);
B1 = d.\B;
z1 = z./d;
z2 = B1'*z1;
R = chol(eye(r) + B1'*B1);
2 comentarios
Walter Roberson
el 6 de Dic. de 2022
Taking B'*B cannot result in large values if the entries are all small... not unless there are a huge number of entries. Each element of B'*B is the dot product between a row and another row of B. The maximum possible value would be max(abs(B))^2 * number of columns
Perhaps you are looking at the pseudoinverse of the matrix instead of the transpose
Respuestas (2)
Bruno Luong
el 9 de Dic. de 2022
Editada: Bruno Luong
el 9 de Dic. de 2022
This statement
B1 = d.\B;
looks very suspecious to me (the .\ operator), if you remove the dot it will work.
Here you do element-wise of d that oscillate to 0, create a huge number in B1 (it can goes to infinity indeed s such noisy data)
[p, r] = size(B);
B1 = d\B;
R = chol(eye(r) + B1'*B1);
Now wht you trying to do and implement only you know, but I suspect your code is incorrect for whatever the goal you want to achieve.
2 comentarios
Bruno Luong
el 9 de Dic. de 2022
Editada: Bruno Luong
el 9 de Dic. de 2022
Only you know what is correct, but your d looks like this
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1225422/image.png)
It looks like it contains noise close to 0 and it cross randomly 0 mny time. 1./ d.\1 is then randomy big.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1225427/image.png)
It that make sense for you then OK, but don't expect getting anything meaningful from that.
B1'*B1 have condition number and large element of the order of probably 1e20. Add eye(r) to it is meaning less, doing cholesky doesn't make any sense numerically. Your code won't produce anything usuful but gardebage with such data.
Askic V
el 6 de Dic. de 2022
Editada: Walter Roberson
el 7 de Dic. de 2022
Without actual code it is very hard to know for sure, but using chol() function in Matlab is actually a preferred way to test if the matrix is positive definite.
For me, it is very hard to understand how values of B'*B can be extremly large if values of B are small. Something is wrong. Please have a look at the example:
B = randn(3,3)*1e-6;
C = B'*B
max(C(:))
min(C(:))
Regarding your problem, I suggest you to read these advices:
4 comentarios
Bruno Luong
el 9 de Dic. de 2022
Editada: Bruno Luong
el 9 de Dic. de 2022
@Askic V "In this particular example, you do have symmetric but not positive definite matrix"
I claim is wrong
C = eye(r) + B1'*B1
is always spd theorically since
x'*C*x is equal to |x|^2+|B1*x|^ 2 >= |x|^2 > 0 for any vector x ~= 0. Which is the requirement of spd (symmetric is easy to see).
Even B1'*B1 is non negative, eig fails to estimate the smallest eigen value.
OP simply has numerical error due to bad scaling issue.
Ver también
Categorías
Más información sobre Linear Algebra en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!