A module providing elementary operations involving scalars, vectors, and matrices over a ring or field. Vectors are represented as [a], matrices as [[a]]. (No distinction is made between row and column vectors.) It is the caller's responsibility to ensure that the lists have the correct number of elements.
The mnemonic for many of the arithmetic operations is that the number of angle brackets on each side indicates the dimension of the argument on that side. For example, v <*>> m is multiplication of a vector on the left by a matrix on the right.
- (<+>) :: Num a => [a] -> [a] -> [a]
- (<->) :: Num a => [a] -> [a] -> [a]
- (*>) :: Num a => a -> [a] -> [a]
- (<.>) :: Num a => [a] -> [a] -> a
- (<*>) :: Num a => [a] -> [a] -> [[a]]
- (<<+>>) :: Num a => [[a]] -> [[a]] -> [[a]]
- (<<->>) :: Num a => [[a]] -> [[a]] -> [[a]]
- (<<*>>) :: Num a => [[a]] -> [[a]] -> [[a]]
- (*>>) :: Num a => a -> [[a]] -> [[a]]
- (<<*>) :: Num a => [[a]] -> [a] -> [a]
- (<*>>) :: Num a => [a] -> [[a]] -> [a]
- iMx :: Num t => Int -> [[t]]
- jMx :: Num t => Int -> [[t]]
- zMx :: Num t => Int -> [[t]]
- inverse :: Fractional a => [[a]] -> Maybe [[a]]
- reducedRowEchelonForm :: Fractional a => [[a]] -> [[a]]
- det :: Fractional a => [[a]] -> a
Documentation
(*>) :: Num a => a -> [a] -> [a]Source
k *> v returns the product k*v of the scalar k and the vector v
(<.>) :: Num a => [a] -> [a] -> aSource
u <.> v returns the dot product of vectors (also called inner or scalar product)
(<*>) :: Num a => [a] -> [a] -> [[a]]Source
u <*> v returns the tensor product of vectors (also called outer or matrix product)
(*>>) :: Num a => a -> [[a]] -> [[a]]Source
k *> m returns the product k*m of the scalar k and the matrix m
(<<*>) :: Num a => [[a]] -> [a] -> [a]Source
m <<*> v is multiplication of a vector by a matrix on the left
(<*>>) :: Num a => [a] -> [[a]] -> [a]Source
v <*>> m is multiplication of a vector by a matrix on the right
inverse :: Fractional a => [[a]] -> Maybe [[a]]Source
The inverse of a matrix (over a field), if it exists
reducedRowEchelonForm :: Fractional a => [[a]] -> [[a]]Source
det :: Fractional a => [[a]] -> aSource
The determinant of a matrix (over a field)