Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eeue56/elm-flat-matrix
Flat matrix implementation for Elm
https://github.com/eeue56/elm-flat-matrix
Last synced: about 2 months ago
JSON representation
Flat matrix implementation for Elm
- Host: GitHub
- URL: https://github.com/eeue56/elm-flat-matrix
- Owner: eeue56
- License: bsd-3-clause
- Created: 2015-09-02T22:51:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T19:00:00.000Z (over 6 years ago)
- Last Synced: 2024-10-30T01:38:12.057Z (3 months ago)
- Language: Elm
- Homepage:
- Size: 52.7 KB
- Stars: 12
- Watchers: 3
- Forks: 11
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# elm-flat-matrix
Other Elm matrix solutions currently use a list of lists, or an array of arrays. This project uses a flat array, to increase internal speed. It mirrors Core.Array's API as closely as possible.
Matrix.Extra provides extra functions for working with matricies, such as mathematical operations.
The implementation is intended to be as fast as possible in pure Elm - there are no Native modules, and everything is done through using Elm functions.