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