----------------------------------------------------------------------------- -- | -- Module : Data.Matrix.Class.IMatrix -- Copyright : Copyright (c) , Patrick Perry -- License : BSD3 -- Maintainer : Patrick Perry -- Stability : experimental -- -- An overloaded interface for immutable matrices. The matrices provide -- access to rows and columns, and can operate via multiplication on -- immutable dense vectors and matrices. -- module Data.Matrix.Class.IMatrix ( -- * The IMatrix type class IMatrix, -- * Rows and columns row, col, rows, cols, -- * Multiplication (<*>), (<**>), sapply, sapplyMat, ) where import Data.Matrix.Class.IMatrixBase