You are here

public function PHPExcel_Shared_JAMA_Matrix::det in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php \PHPExcel_Shared_JAMA_Matrix::det()

* det * * Calculate determinant *

Return value

float Determinant

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php, line 1053

Class

PHPExcel_Shared_JAMA_Matrix

Code

public function det() {
  $L = new PHPExcel_Shared_JAMA_LUDecomposition($this);
  return $L
    ->det();
}