Popularity
2.8
Declining
Activity
0.0
Stable
2
3
1

Monthly Downloads: 16
Programming language: Haskell
License: MIT License
Tags: Math     Vector    
Latest version: v0.2.0

vector-space-map alternatives and similar packages

Based on the "vector" category.
Alternatively, view vector-space-map alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of vector-space-map or a related project?

Add another 'vector' Package

README

vector-space-map

Build Status

vector-space operations for finite maps using Data.Map

Data.Map.Vector provides MapVector, a wrapper around Map from containers which supports constant maps, i.e. maps containing only one value. This allows an identity under intersection and an Applicative instance. It also has instances of AdditiveGroup, VectorSpace, InnerSpace, and Num with appropriate value types. Provides operations for addition, subtraction, element-wise operations (through Applicative), scalar multiplication (through VectorSpace), and dot product.

Also consider Conal Elliott's total-map package, which provides a different Applicative map.