Matrix inverse and determinant

版本 1.0.0.0 (1.4 KB) 作者: Feng Cheng Chang
Finding inverse and determinant of matrix by order expansion and condensation
357.0 次下载
更新时间 2015/12/16

查看许可证

The inverse and determinant of a given square matrix can be computed by the following routine applying simultaneously matrix order expansion and condensation. After completing the iteration, the expansion process results in the inverse of the given matrix (invM), and the condensation process generate an array of pivot elements (p) which eventualy gives the determinant (detM) of the given matrix (M):
[invM,detM,p,s,rc] = inv_det_opt(M).
In summary: (1) if the given matrix is non-singular then its determinant is found to be equal to the product of pivot elements. (2) if the last pivot element is found shrinking sharply toward zero, then the given matrix is said to be singular.

引用格式

Feng Cheng Chang (2024). Matrix inverse and determinant (https://www.mathworks.com/matlabcentral/fileexchange/48600-matrix-inverse-and-determinant), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R12
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Calculus 的更多信息
致谢

参考作品: inv_det_0(A), mtx_d(A,D,d)

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0

Update and re-write the m-code.
This author dose not expect anyone can provide any square matrix (as huge as 1000x1000) that can disprove the results by applying this optimal iteration processing routine.