Is there a MATLAB routine that uses the Gauss-Jordan method?
조회 수: 5 (최근 30일)
이전 댓글 표시
MathWorks Support Team
2011년 6월 22일
편집: MathWorks Support Team
2024년 9월 13일
Gauss-Jordan reduction is a way to reduce a matrix to diagonal form. You can use this to compute the inverse of a matrix or solve a linear system.
채택된 답변
MathWorks Support Team
2024년 9월 13일
편집: MathWorks Support Team
2024년 9월 13일
For most applications, the Gauss-Jordan method is an unnecessarily expensive way to do these computations. Our backslash operator (\), which indirectly finds the inverse and also solves linear systems, uses Gaussian elimination which is different than the Gauss-Jordan method. You can read more about the backslash operator within our documentation, shown at the following URL:
You can also use the RREF function to produce the reduced row echelon form of a matrix using Gauss Jordan elimination with partial pivoting.
댓글 수: 0
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!