# Linear Algebra

## Matrix

### Matrix Multiplication
Multiply (matrix-matrix product) an m x p matrix with another p x n matrix and return an m x n matrix.
```php
public matmul(Matrix $b) : Matrix
```
