Source for file tile.php
Documentation is available at tile.php
* Tiling of matrix X in [rowWise by colWise] dimension. Tiling
* creates a larger matrix than the original data X. Example, if
* X is to be tiled in a [3 x 4] manner, then:
function tile(&$X, $rowWise, $colWise){
$xArray = $X->getArray();
$m = $X->getRowDimension();
$n = $X->getColumnDimension();
if( $rowWise< 1 || $colWise< 1 ){
die("tile : Array index is out-of-bound.");
$newRowDim = $m* $rowWise;
$newColDim = $n* $colWise;
for($i= 0 ; $i< $newRowDim; $i++ ){
for($j= 0 ; $j< $newColDim ; $j++ ){
$holder[$j] = $xArray[$countRow][$countColumn++ ];
// reset the column-index to zero to avoid reference to out-of-bound index in xArray[][]
if($countColumn == $n) { $countColumn = 0; }
// reset the row-index to zero to avoid reference to out-of-bound index in xArray[][]
if($countRow == $m) { $countRow = 0; }
$X = array(1,2,3,4,5,6,7,8,9);
$tiled_matrix = tile(new Matrix($X), $nRow, $nCol);
|