Det() public static method

Dets the given x coordinate.
Thrown when the requested operation is invalid.
public static Det ( Matrix x ) : double
x Matrix Matrix x.
return double
Beispiel #1
0
 /// <summary>
 /// computes matrix determinant NOTE: currently using cholesky factorization to save time so non
 /// symmetric positive semi-definite matrices will cause problems...
 /// </summary>
 /// <param name="m">Matrix.</param>
 /// <returns>Determinant.</returns>
 public static double Det(this Matrix m)
 {
     return(Matrix.Det(m));
 }