Hoogle Search

Within LTS Haskell 24.31 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. runCovector :: Covector r a -> (a -> r) -> r

    linear Linear.Covector

    No documentation available.

  2. reifyVector :: Vector a -> (forall n . Dim n => V n a -> r) -> r

    linear Linear.V

    No documentation available.

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

    linear Linear.V

    No documentation available.

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

    linear Linear.V

    No documentation available.

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

    hmatrix Numeric.LinearAlgebra

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

  6. roundVector :: Vector Double -> Vector Double

    hmatrix Numeric.LinearAlgebra.Data

    No documentation available.

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

    hmatrix Numeric.LinearAlgebra.Data

    No documentation available.

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

  9. data STVector s t

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

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

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

Page 43 of many | Previous | Next