public function PHPExcel_Shared_JAMA_Matrix::inverse in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php \PHPExcel_Shared_JAMA_Matrix::inverse()
* Matrix inverse or pseudoinverse. * *
Return value
Matrix ... Inverse(A) if A is square, pseudoinverse otherwise.
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ JAMA/ Matrix.php, line 1042
Class
Code
public function inverse() {
return $this
->solve($this
->identity($this->m, $this->m));
}