MF_CholeskyDet
| MD_CholeskyDet |
ME_CholeskyDet |
|
Function | determinant of a symmetric matrix which has already undergone Cholesky decomposition |
|
Syntax C/C++ | #include <MFstd.h>
float MF_CholeskyDet( fMatrix MLR, ui len ); |
C++ MatObj | #include <OptiVec.h>
void matrix<T>::CholeskyDet( const matrix<T>& MLR, int permut ); |
Pascal/Delphi | uses MFstd;
function MF_CholeskyDet( MLR:fMatrix; len:UIntSize ): Single; |
|
Description | The determinant of a symmetric matrix already decomposed into either ML or MR form by Cholesky decomposition is calculated and returned. It does not matter if the ML or the MR form is used. |
|
|
|