----------------------------------------------------------------------------- -- | -- Module : Data.Matrix.Class.MSolve -- Copyright : Copyright (c) , Patrick Perry -- License : BSD3 -- Maintainer : Patrick Perry -- Stability : experimental -- -- An overloaded interface for solving matrix systems in a monad. The -- matrices can operate via inverse multiplication on immutable dense -- vectors and matrices. -- module Data.Matrix.Class.MSolve ( -- * The MSolve type class MSolve, -- * Solving linear systems getSolve, getSolveMat, getSSolve, getSSolveMat, -- * In-place operations doSolve, doSolveMat, doSSolve, doSSolveMat, doSolve_, doSolveMat_, doSSolve_, doSSolveMat_, ) where import Data.Matrix.Class.MSolveBase