You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

test.php 248 B

4 years ago
12345678910111213141516171819
  1. <?php
  2. include __DIR__ . '/../classes/Bootstrap.php';
  3. $grid1 = [
  4. [1, 3, 2],
  5. [2, 3, 1],
  6. ];
  7. $grid2 = [
  8. [1, 6],
  9. [0, 1],
  10. ];
  11. $matrix = new Matrix\Matrix($grid1);
  12. $new = $matrix->directsum(new Matrix\Matrix($grid2));
  13. var_dump($new);