antidiagonal.php 762 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. *
  4. * Function code for the matrix antidiagonal() function
  5. *
  6. * @copyright Copyright (c) 2018 Mark Baker (https://github.com/MarkBaker/PHPMatrix)
  7. * @license https://opensource.org/licenses/MIT MIT
  8. */
  9. namespace Matrix;
  10. /**
  11. * Returns the antidiagonal of a matrix or an array.
  12. *
  13. * @param Matrix|array $matrix Matrix or an array to treat as a matrix.
  14. * @return Matrix The new matrix
  15. * @throws Exception If argument isn't a valid matrix or array.
  16. */
  17. function antidiagonal($matrix)
  18. {
  19. if (is_array($matrix)) {
  20. $matrix = new Matrix($matrix);
  21. }
  22. if (!$matrix instanceof Matrix) {
  23. throw new Exception('Must be Matrix or array');
  24. }
  25. return Functions::antidiagonal($matrix);
  26. }