public function SingularValueDecomposition::getV 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::getV()
* Return the right singular vectors * * @access public *
Return value
V
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Shared/ JAMA/ SingularValueDecomposition.php, line 453
Class
- SingularValueDecomposition
- @package JAMA
Code
public function getV() {
return new Matrix($this->V);
}