ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
test.php
Go to the documentation of this file.
1 <?php
2 
3 use Matrix\Matrix;
5 
6 include __DIR__ . '/../vendor/autoload.php';
7 
8 $grid = [
9  [1, 2],
10  [3, 4],
11 ];
12 
14  [-1],
15  [-2],
16 ];
17 
20 
22 
24 
26 var_export($X->toArray());
28 
29 $resolve = $matrix->multiply($X);
30 
31 echo 'Resolve', PHP_EOL;
32 var_export($resolve->toArray());
$grid
Definition: test.php:8
$X
Definition: test.php:23
$resolve
Definition: test.php:29
$targetGrid
Definition: test.php:13
$decomposition
Definition: test.php:21
PHP_EOL
Definition: test.php:25
$matrix
Definition: test.php:18
Class for the creating "special" Matrices.
Definition: Builder.php:11
$target
Definition: test.php:19