https://github.com/slotthe/matrix-converter
Quickly generate matrices and convert them to different formats
https://github.com/slotthe/matrix-converter
brick haskell
Last synced: 2 months ago
JSON representation
Quickly generate matrices and convert them to different formats
- Host: GitHub
- URL: https://github.com/slotthe/matrix-converter
- Owner: slotThe
- License: gpl-3.0
- Created: 2022-03-05T18:55:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-25T19:14:34.000Z (about 2 years ago)
- Last Synced: 2025-03-22T19:46:23.077Z (about 1 year ago)
- Topics: brick, haskell
- Language: Haskell
- Homepage: https://gitlab.com/slotThe/matrix-converter
- Size: 39.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# matrix
Small program to generate matrices and copy them to one of several
[predefined formats](#currently-supported-formats).
By default, finished entries are copied to the system clipboard and spat
out to stdout.
For example:

## Currently Supported Formats
- Clojure arrays: `[[1 2] [3 4]]`
- Haskell lists: `[[1,2],[3,4]]`
- LaTeX's `pmatrix`:
``` tex
\begin{pmatrix}
1 & 2 \\
3 & 4 \\
\end{pmatrix}
```
- Python arrays: `Matrix([[1,2],[3,4]])`