Effacer les filtres
Effacer les filtres

¿Qué significa la matriz que devuelve la función chol(A), si A es definida positiva pero no es simétrica?

2 vues (au cours des 30 derniers jours)
A=[4 2;1 3];
chol(A)
ans =
2.0000 1.0000
0 1.4142
  1 commentaire
Walter Roberson
Walter Roberson le 28 Sep 2023
Approximate translation:
What does the matrix returned by the function chol(A) mean if A is positive definite but not symmetric?

Connectez-vous pour commenter.

Réponse acceptée

Walter Roberson
Walter Roberson le 28 Sep 2023
"If A is nonsymmetric, then chol treats the matrix as symmetric and uses only the diagonal and upper triangle of A."

Plus de réponses (1)

Torsten
Torsten le 28 Sep 2023
Modifié(e) : Torsten le 28 Sep 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]
A = 2×2
4 2 2 3
chol(A)
ans = 2×2
2.0000 1.0000 0 1.4142

Catégories

En savoir plus sur Mathematics and Optimization dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by