inv_det_0(A)

버전 1.2.0.0 (520 Bytes) 작성자: Feng Cheng Chang
Inverse and determinant of a matrix by order expansion and condensation
다운로드 수: 193
업데이트 날짜: 2014/11/15

라이선스 보기

The inverse and determinant of a given square matrix can be computed by applying iteration routine involved simultaneously matrix order expansion and condensation process. At the conclusion of iterations process, the expansion routine results in the inverse (iA) of the given matrix (A), and the condensation routine generates an array (p) of elements (Schur components), which gives the determinant (dA)of the given matrix.
[iA,dA,p] = inv_det_0.(A).
The routine code is very compact, and works for fairly large order matrices such as A = randn(99). The total number of multiplication/division operations is about N^3, which is need for the product of two NxN matrices.
The routine involves simple arithmatic division, and will fail if the divider becomes zeros. In such cases, we must interchange among rows and columns of the given matrix, before running the routine.

인용 양식

Feng Cheng Chang (2024). inv_det_0(A) (https://www.mathworks.com/matlabcentral/fileexchange/47444-inv_det_0-a), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R12
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Operating on Diagonal Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.2.0.0

Combine order expansion and condensation routines into a simple compact routine

1.1.0.0

Submitted files det_inv_0.m and det_0.m must be independently separated.

1.0.0.0