Hoogle Search
Within LTS Haskell 24.6 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
foldVectorWithIndex :: Storable a => (Int -> a -> b -> b) -> b -> Vector a -> bhmatrix Numeric.LinearAlgebra.Devel No documentation available.
freezeVector :: Storable t => STVector s t -> ST s (Vector t)hmatrix Numeric.LinearAlgebra.Devel No documentation available.
liftSTVector :: Storable t => (Vector t -> a) -> STVector s t -> ST s ahmatrix Numeric.LinearAlgebra.Devel No documentation available.
mapVectorM :: (Storable a, Storable b, Monad m) => (a -> m b) -> Vector a -> m (Vector b)hmatrix Numeric.LinearAlgebra.Devel monadic map over Vectors the monad m must be strict
mapVectorM_ :: (Storable a, Monad m) => (a -> m ()) -> Vector a -> m ()hmatrix Numeric.LinearAlgebra.Devel monadic map over Vectors
mapVectorWithIndex :: (Storable a, Storable b) => (Int -> a -> b) -> Vector a -> Vector bhmatrix Numeric.LinearAlgebra.Devel No documentation available.
-
hmatrix Numeric.LinearAlgebra.Devel monadic map over Vectors with the zero-indexed index passed to the mapping function the monad m must be strict
mapVectorWithIndexM_ :: (Storable a, Monad m) => (Int -> a -> m ()) -> Vector a -> m ()hmatrix Numeric.LinearAlgebra.Devel monadic map over Vectors with the zero-indexed index passed to the mapping function
matrixFromVector :: Storable t => MatrixOrder -> Int -> Int -> Vector t -> Matrix thmatrix Numeric.LinearAlgebra.Devel No documentation available.
modifyVector :: Storable t => STVector s t -> Int -> (t -> t) -> ST s ()hmatrix Numeric.LinearAlgebra.Devel No documentation available.