----------------------------------------------------------------------------- -- | -- Module : Numeric.LinearAlgebra.Packed.ST -- Copyright : Copyright (c) 2010, Patrick Perry -- License : BSD3 -- Maintainer : Patrick Perry -- Stability : experimental -- -- Mutable packed matrices. -- module Numeric.LinearAlgebra.Packed.ST ( -- * Mutable packed matrices STPacked, IOPacked, create, -- * Read-only packed matrices RPacked(..), -- * Conversions between mutable and immutable packed matrices freeze, -- * Creating new packed matrices new_, -- * Copying matrices newCopy, -- * Vector views of packed matrices withVectorM, -- * Packed matrix views of vectors withFromVector, withFromVectorM, ) where import Numeric.LinearAlgebra.Packed.Base