dense-linear-algebra-0.1.0.0: Simple and incomplete pure haskell implementation of linear algebra

Copyright2011 Aleksey Khudyakov 2014 Bryan O'Sullivan
LicenseBSD3
Safe HaskellNone
LanguageHaskell2010

Statistics.Matrix

Contents

Description

Basic matrix operations.

There isn't a widely used matrix package for Haskell yet, so we implement the necessary minimum here.

Synopsis

Data types

data Matrix Source #

Two-dimensional matrix, stored in row-major order.

Constructors

Matrix 

Fields

Instances
Eq Matrix Source # 
Instance details

Defined in Statistics.Matrix.Types

Methods

(==) :: Matrix -> Matrix -> Bool #

(/=) :: Matrix -> Matrix -> Bool #

Show Matrix Source # 
Instance details

Defined in Statistics.Matrix.Types

Conversion fromto listsvectors

fromVector Source #

Arguments

:: Int

Number of rows.

-> Int

Number of columns.

-> Vector Double

Flat list of values, in row-major order.

-> Matrix 

Convert from a row-major vector.

fromList Source #

Arguments

:: Int

Number of rows.

-> Int

Number of columns.

-> [Double]

Flat list of values, in row-major order.

-> Matrix 

Convert from a row-major list.

fromRowLists :: [[Double]] -> Matrix Source #

create a matrix from a list of lists, as rows

fromRows :: [Vector] -> Matrix Source #

create a matrix from a list of vectors, as rows

fromColumns :: [Vector] -> Matrix Source #

create a matrix from a list of vectors, as columns

toVector :: Matrix -> Vector Double Source #

Convert to a row-major flat vector.

toList :: Matrix -> [Double] Source #

Convert to a row-major flat list.

toRows :: Matrix -> [Vector] Source #

Convert to a list of vectors, as rows

toColumns :: Matrix -> [Vector] Source #

Convert to a list of vectors, as columns

toRowLists :: Matrix -> [[Double]] Source #

Convert to a list of lists, as rows

Other

generate Source #

Arguments

:: Int

Number of rows

-> Int

Number of columns

-> (Int -> Int -> Double)

Function which takes row and column as argument.

-> Matrix 

Generate matrix using function

generateSym Source #

Arguments

:: Int

Number of rows and columns

-> (Int -> Int -> Double)

Function which takes row and column as argument. It must be symmetric in arguments: f i j == f j i

-> Matrix 

Generate symmetric square matrix using function

ident :: Int -> Matrix Source #

Create the square identity matrix with given dimensions.

diag :: Vector -> Matrix Source #

Create a square matrix with given diagonal, other entries default to 0

dimension :: Matrix -> (Int, Int) Source #

Return the dimensions of this matrix, as a (row,column) pair.

center :: Matrix -> Double Source #

Element in the center of matrix (not corrected for exponent).

multiply :: Matrix -> Matrix -> Matrix Source #

Matrix-matrix multiplication. Matrices must be of compatible sizes (note: not checked).

multiplyV :: Matrix -> Vector -> Vector Source #

Matrix-vector multiplication.

power :: Matrix -> Int -> Matrix Source #

Raise matrix to nth power. Power must be positive (/note: not checked).

norm :: Vector -> Double Source #

Calculate the Euclidean norm of a vector.

column :: Matrix -> Int -> Vector Source #

Return the given column.

row :: Matrix -> Int -> Vector Source #

Return the given row.

map :: (Double -> Double) -> Matrix -> Matrix Source #

Apply function to every element of matrix

for :: Monad m => Int -> Int -> (Int -> m ()) -> m () Source #

Simple for loop. Counts from start to end-1.

unsafeIndex Source #

Arguments

:: Matrix 
-> Int

Row.

-> Int

Column.

-> Double 

hasNaN :: Matrix -> Bool Source #

Indicate whether any element of the matrix is NaN.

bounds :: (Vector -> Int -> r) -> Matrix -> Int -> Int -> r Source #

Given row and column numbers, calculate the offset into the flat row-major vector.

unsafeBounds :: (Vector -> Int -> r) -> Matrix -> Int -> Int -> r Source #

Given row and column numbers, calculate the offset into the flat row-major vector, without checking.