- `C = mldivide (A, B)`

Return the matrix left division of `A` and `B`.

This function and `A \ B` are equivalent.

If the system is not square, or if the coefficient matrix is singular, a
minimum norm solution is computed.

See also: `mrdivide`, `ldivide`, `rdivide`, `linsolve`.

### References

- https://www.mathworks.com/help/matlab/ref/mldivide.html
- https://octave.sourceforge.io/octave/function/mldivide.html
