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.
-
vector
An efficient implementation of Int-indexed arrays (both mutable and immutable), with a powerful loop optimisation framework . -
vector-space
Vector & affine spaces, linear maps, and derivatives -
vector-th-unbox
Deriver for unboxed vectors using Template Haskell -
vector-binary-instances
Instances for the Haskell Binary class, for the types defined in the popular vector package. -
vector-space-points
A type for points, as distinct from vectors. -
vector-bytestring
ByteStrings as type synonyms of Vectors -
vector-heterogenous
Arbitrary size tuples in Haskell -
vector-functorlazy
vectors supporting lazy fmap application; asymptotically faster in some cases
Access the most powerful time series database as a service
Do you think we are missing an alternative of vector-space-map or a related project?
README
vector-space-map
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.