You are here

public function EigenvalueDecomposition::getV in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php \EigenvalueDecomposition::getV()

* Return the eigenvector matrix * * @access public *

Return value

V

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/EigenvalueDecomposition.php, line 816

Class

EigenvalueDecomposition
@package JAMA

Code

public function getV() {
  return new Matrix($this->V, $this->n, $this->n);
}