----------------------------------------------------------------------------- -- | -- Module : Data.Matrix.Class.MMatrix -- Copyright : Copyright (c) , Patrick Perry -- License : BSD3 -- Maintainer : Patrick Perry -- Stability : experimental -- -- An overloaded interface for mutable matrices. The type class associates a -- matrix with a monad type in which operations can be perfomred. The -- matrices provide access to rows and columns, and can operate via -- multiplication on dense vectors and matrices. -- module Data.Matrix.Class.MMatrix ( -- * The MMatrix type class MMatrix, -- * Getting rows and columns getRow, getCol, getRows, getCols, getRows', getCols', -- * Matrix and vector multiplication getApply, getSApply, getApplyMat, getSApplyMat, -- * In-place multiplication doApply, doSApplyAdd, doApply_, doSApply_, doApplyMat, doSApplyAddMat, doApplyMat_, doSApplyMat_, ) where import Data.Matrix.Class.MMatrixBase