public function SingularValueDecomposition::getSingularValues in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php \SingularValueDecomposition::getSingularValues()
* Return the one-dimensional array of singular values * * @access public *
Return value
diagonal of S.
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ JAMA/ SingularValueDecomposition.php, line 464
Class
- SingularValueDecomposition
- @package JAMA
Code
public function getSingularValues() {
return $this->s;
}