public function CholeskyDecomposition::isSPD in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php \CholeskyDecomposition::isSPD()
* Is the matrix symmetric and positive definite? * *
Return value
boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ JAMA/ CholeskyDecomposition.php, line 86
Class
- CholeskyDecomposition
- @package JAMA
Code
public function isSPD() {
return $this->isspd;
}