You are here

public function SingularValueDecomposition::getSingularValues in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.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;
}