|
Function | determinant of a square matrix |
|
Syntax C/C++ | #include <MFstd.h>
float MF_det( fMatrix MA, ui len ); |
C++ MatObj | #include <OptiVec.h>
T matrix<T>::det(); |
Pascal/Delphi | uses MFstd;
function MF_det( MA:fMatrix; len:UIntSize ):Single; |
|
Description | The determinant of MA is calculated. For large matrices, this is done via LU decomposition. For small matrices, individual formulae are applied. |
|
Return value | determinant of the matrix |
|
|