https://github.com/hachreak/egfmatrix
Erlang Galois Field Matrix library
https://github.com/hachreak/egfmatrix
Last synced: 5 months ago
JSON representation
Erlang Galois Field Matrix library
- Host: GitHub
- URL: https://github.com/hachreak/egfmatrix
- Owner: hachreak
- License: gpl-2.0
- Created: 2015-03-15T17:09:43.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-19T23:50:53.000Z (over 10 years ago)
- Last Synced: 2025-02-16T22:28:03.624Z (8 months ago)
- Language: Erlang
- Homepage:
- Size: 445 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Erlang Galois Field Matrix library
===============This library manipulate matrix and use finite field mathematics.
You have at disposition many method to:
- find the transpose
- sum/subtract matrix
- multiply matrix
- solve square matrices
- find determinant
- other operations.There is a dedicate class to fill a matrix with random values.
You can use this kind of Galois Field: GF(2^3), GF(2^8), GF(2^16).
How to build docker image?
--------------------------`docker build -t myerlang .`
Or, you can use my image with:
`docker pull hachreak/erlang`
See details here: https://registry.hub.docker.com/u/hachreak/erlang/
How to run the docker image?
----------------------------```bash
docker run -i -t -v `pwd`:/var/www:rw --rm myerlang /bin/bash
```