Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.