Server_AccessControl/vendor/markbaker/matrix/examples/test.php
2020-10-06 14:27:47 +07:00

20 lines
248 B
PHP

<?php
include __DIR__ . '/../classes/Bootstrap.php';
$grid1 = [
[1, 3, 2],
[2, 3, 1],
];
$grid2 = [
[1, 6],
[0, 1],
];
$matrix = new Matrix\Matrix($grid1);
$new = $matrix->directsum(new Matrix\Matrix($grid2));
var_dump($new);