public function SingularValueDecomposition::getU in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php \SingularValueDecomposition::getU()
* Return the left singular vectors * * @access public *
Return value
U
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ JAMA/ SingularValueDecomposition.php, line 442
Class
- SingularValueDecomposition
- @package JAMA
Code
public function getU() {
return new Matrix($this->U, $this->m, min($this->m + 1, $this->n));
}