Small program to generate matrices and copy them to one of several predefined formats.
By default, finished entries are copied to the system clipboard and spat out to stdout.
For example:
- Clojure arrays:
[[1 2] [3 4]]
- Haskell lists:
[[1,2],[3,4]]
- LaTeX's
pmatrix
:\begin{pmatrix} 1 & 2 \\ 3 & 4 \\ \end{pmatrix}
- Python arrays:
Matrix([[1,2],[3,4]])