You are here

public function PHPExcel_Shared_JAMA_Matrix::get in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php \PHPExcel_Shared_JAMA_Matrix::get()

* get * * Get the i,j-th element of the matrix. *

Parameters

int $i Row position: * @param int $j Column position * @return mixed Element (int/float/double)

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/JAMA/Matrix.php, line 156

Class

PHPExcel_Shared_JAMA_Matrix

Code

public function get($i = null, $j = null) {
  return $this->A[$i][$j];
}