qlinear alternatives and similar packages
Based on the "Math" category.
Alternatively, view qlinear 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 . -
hgeometry
HGeometry is a library for computing with geometric objects in Haskell. It defines basic geometric types and primitives, and it implements some geometric data structures and algorithms. -
dimensional
Dimensional library variant built on Data Kinds, Closed Type Families, TypeNats (GHC 7.8+). -
numhask
A haskell numeric prelude, providing a clean structure for numbers and operations that combine them. -
poly
Fast polynomial arithmetic in Haskell (dense and sparse, univariate and multivariate, usual and Laurent) -
eigen
Haskel binding for Eigen library. Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms.
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of qlinear or a related project?
README
QLinear
QLinear is type safe library for linear algebra based on "macro-constructors"
Constructors:
matrix
[matrix| a b ; c d |]
builds matrix 2x2[ [a, b], [c, d] ]
Example:
[matrix| 1 2; 3 4 |] ~+~ [matrix| 2 3; 4 5 |] == [matrix| 3 5; 7 9 |]
Also you can't, for example, add two matrix with different size.
[matrix| 1 2; 3 4 |] ~+~ [matrix| 1 2 3; 4 5 6; 7 8 9 |] -- will not be compiled
- vector
>
[vector| a b c d |]
builds matrix 4x1[ [a], [b], [c], [d] ]
- vector
>
operator
[operator| (x, y) => (y, x) |]
builds matrix 2x2 of operator[ [0, 1], [1, 0] ]
that swaps coodrinates
[operator| (x, y) => (2 * x, y) |]
builds matrix 2x2 of operator[ [2, 0], [0, 1] ]
that doublesx
coordinate
Example:
haskell
[operator| (x, y) => (3 * y, x / 2) |] ~*~ [vector| 2 8 |] == [vector| 24 1 |]
Syntax:
- matrix:
val11 val12 .. val1n; val21 val22 .. val2n; ..; valm1 valm2 .. valmn
- vector:
val1 val2 .. valn
- operator:
(var1, var2, .., varn) => (exp1, exp2, .., expn)
whereval
isnumber literal
,variable
orany Haskell expression
between(
and)
var
is Haskell variable
*
exp
is any Haskell expressionAlso there are basic operations as determinant, transposition, etc.