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.

  1. reifyVectorNat :: Vector a -> (forall (n :: Nat) . KnownNat n => V n a -> r) -> r

    linear Linear.V

    No documentation available.

  2. toVector :: V (n :: k) a -> Vector a

    linear Linear.V

    No documentation available.

  3. randomVector :: Seed -> RandDist -> Int -> Vector Double

    hmatrix Numeric.LinearAlgebra

    Obtains a vector of pseudorandom elements (use randomIO to get a random seed).

  4. roundVector :: Vector Double -> Vector Double

    hmatrix Numeric.LinearAlgebra.Data

    No documentation available.

  5. sortVector :: (Ord t, Element t) => Vector t -> Vector t

    hmatrix Numeric.LinearAlgebra.Data

    No documentation available.

  6. subVector :: Storable t => Int -> Int -> Vector t -> Vector t

    hmatrix 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
    

  7. data STVector s t

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  8. createVector :: Storable a => Int -> IO (Vector a)

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  9. foldVector :: Storable a => (a -> b -> b) -> b -> Vector a -> b

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

  10. foldVectorG :: Storable t1 => (Int -> (Int -> t1) -> t -> t) -> t -> Vector t1 -> t

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

Page 43 of many | Previous | Next