You are here

public function PHPExcel_Shared_JAMA_Matrix::set 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::set()

* set * * Set the i,j-th element of the matrix. *

Parameters

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

File

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

Class

PHPExcel_Shared_JAMA_Matrix

Code

public function set($i = null, $j = null, $c = null) {

  // Optimized set version just has this
  $this->A[$i][$j] = $c;
}