You are here

public function SingularValueDecomposition::norm2 in Loft Data Grids 6.2

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

* Two norm * * @access public *

Return value

max(S)

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/SingularValueDecomposition.php, line 492

Class

SingularValueDecomposition
@package JAMA

Code

public function norm2() {
  return $this->s[0];
}