Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
sortVector :: (Ord t, Element t) => Vector t -> Vector thmatrix Numeric.LinearAlgebra.Data No documentation available.
subVector :: Storable t => Int -> Int -> Vector t -> Vector thmatrix Numeric.LinearAlgebra.Data takes a number of consecutive elements from a Vector
>>> subVector 2 3 (fromList [1..10]) [3.0,4.0,5.0] it :: (Enum t, Num t, Foreign.Storable.Storable t) => Vector t
-
hmatrix Numeric.LinearAlgebra.Devel No documentation available.
createVector :: Storable a => Int -> IO (Vector a)hmatrix Numeric.LinearAlgebra.Devel No documentation available.
foldVector :: Storable a => (a -> b -> b) -> b -> Vector a -> bhmatrix Numeric.LinearAlgebra.Devel No documentation available.
foldVectorG :: Storable t1 => (Int -> (Int -> t1) -> t -> t) -> t -> Vector t1 -> thmatrix Numeric.LinearAlgebra.Devel No documentation available.
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