Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

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

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

    linear Linear.V

    No documentation available.

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

    linear Linear.V

    No documentation available.

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

    linear Linear.V

    No documentation available.

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

    hmatrix Numeric.LinearAlgebra

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

  5. roundVector :: Vector Double -> Vector Double

    hmatrix Numeric.LinearAlgebra.Data

    No documentation available.

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

    hmatrix Numeric.LinearAlgebra.Data

    No documentation available.

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

  8. data STVector s t

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

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

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

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

    hmatrix Numeric.LinearAlgebra.Devel

    No documentation available.

Page 43 of many | Previous | Next