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.

  1. mapVectorM_ :: (Storable a, Monad m) => (a -> m ()) -> Vector a -> m ()

    hmatrix Numeric.LinearAlgebra.Devel

    monadic map over Vectors

  2. mapVectorWithIndex :: (Storable a, Storable b) => (Int -> a -> b) -> Vector a -> Vector b

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  3. mapVectorWithIndexM :: (Storable a, Storable b, Monad m) => (Int -> a -> m b) -> Vector a -> m (Vector b)

    hmatrix Numeric.LinearAlgebra.Devel

    monadic map over Vectors with the zero-indexed index passed to the mapping function the monad m must be strict

  4. 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

  5. matrixFromVector :: Storable t => MatrixOrder -> Int -> Int -> Vector t -> Matrix t

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  6. modifyVector :: Storable t => STVector s t -> Int -> (t -> t) -> ST s ()

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  7. newUndefinedVector :: Storable t => Int -> ST s (STVector s t)

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  8. newVector :: Storable t => t -> Int -> ST s (STVector s t)

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  9. readVector :: Storable t => STVector s t -> Int -> ST s t

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  10. reorderVector :: Element a => Vector CInt -> Vector CInt -> Vector a -> Vector a

    hmatrix Numeric.LinearAlgebra.Devel

    Transpose an array with dimensions dims by making a copy using strides. For example, for an array with 3 indices, (reorderVector strides dims v) ! ((i * dims ! 1 + j) * dims ! 2 + k) == v ! (i * strides ! 0 + j * strides ! 1 + k * strides ! 2) This function is intended to be used internally by tensor libraries.

Page 44 of many | Previous | Next