matrix-sized-0.1.1: Haskell matrix library with interface to C++ linear algebra libraries.

Safe HaskellNone
LanguageHaskell2010

Data.Matrix.Static.IO

Documentation

fromMM :: forall o m r c v a. (PrimMonad m, SingI r, SingI c, Vector v a, IOElement a) => ConduitT ByteString o m (SparseMatrix r c v a) Source #

fromMM' :: forall o m v a. (PrimMonad m, Vector v a, IOElement a) => ConduitT ByteString o m (Dynamic SparseMatrix v a) Source #

toMM :: forall m r c v a i. (Monad m, Zero a, IOElement a, Vector v a) => SparseMatrix r c v a -> ConduitT i ByteString m () Source #

class Unbox a => IOElement a where Source #