ILIAS
Release_4_0_x_branch Revision 61816
|
Go to the source code of this file.
Functions | |
tile (&$X, $rowWise, $colWise) | |
Tiling of matrix X in [rowWise by colWise] dimension. |
Variables | |
$X = array(1,2,3,4,5,6,7,8,9) | |
$nRow = 3 | |
$nCol = 3 | |
$tiled_matrix = tile(new Matrix($X), $nRow, $nCol) |
tile | ( | & | $X, |
$rowWise, | |||
$colWise | |||
) |
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:
/ \ | X X X X |
C = | X X X X | | X X X X | \ /
X | Matrix |
rowWise | int |
colWise | int |
Definition at line 22 of file tile.php.
References $n, $result, and $X.