Files
yyh931018@qq.com 1b0c8f4196 update
2022-09-08 15:32:32 +08:00

20 lines
246 B
PHP

<?php
include __DIR__ . '/../vendor/autoload.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);