¿Qué significa la matriz que devuelve la función chol(A), si A es definida positiva pero no es simétrica?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rosa
el 28 de Sept. de 2023
Comentada: Torsten
el 28 de Sept. de 2023
A=[4 2;1 3];
chol(A)
ans =
2.0000 1.0000
0 1.4142
1 comentario
Walter Roberson
el 28 de Sept. de 2023
Approximate translation:
What does the matrix returned by the function chol(A) mean if A is positive definite but not symmetric?
Respuesta aceptada
Walter Roberson
el 28 de Sept. de 2023
"If A is nonsymmetric, then chol treats the matrix as symmetric and uses only the diagonal and upper triangle of A."
0 comentarios
Más respuestas (1)
Torsten
el 28 de Sept. de 2023
Editada: Torsten
el 28 de Sept. de 2023
From the documentation:
If A is nonsymmetric, then chol treats the matrix as symmetric and uses only the diagonal and upper triangle of A.
Thus in your case it works with the matrix A' = [4 2;2 3].
A = [4 2;2 3]
chol(A)
2 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!