You are here

public function EigenvalueDecomposition::getImagEigenvalues 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::getImagEigenvalues()

* Return the imaginary parts of the eigenvalues * * @access public *

Return value

imag(diag(D))

File

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

Class

EigenvalueDecomposition
@package JAMA

Code

public function getImagEigenvalues() {
  return $this->e;
}