You are here

public function CholeskyDecomposition::getL in Loft Data Grids 6.2

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

* getL * * Return triangular factor. *

Return value

Matrix Lower triangular matrix

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/CholeskyDecomposition.php, line 97

Class

CholeskyDecomposition
@package JAMA

Code

public function getL() {
  return new Matrix($this->L);
}