필터 지우기
필터 지우기

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

조회 수: 2 (최근 30일)
A=[4 2;1 3];
chol(A)
ans =
2.0000 1.0000
0 1.4142
  댓글 수: 1
Walter Roberson
Walter Roberson 2023년 9월 28일
Approximate translation:
What does the matrix returned by the function chol(A) mean if A is positive definite but not symmetric?

댓글을 달려면 로그인하십시오.

채택된 답변

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

추가 답변 (1개)

Torsten
Torsten 2023년 9월 28일
편집: Torsten 2023년 9월 28일
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

카테고리

Help CenterFile Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by