Hoogle Search

Within LTS Haskell 24.58 (ghc-9.10.3)

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

  1. multiplyMatrixByVector :: (MonadThrow m, Numeric r e, Manifest r e) => Matrix r e -> Vector r e -> m (Vector r e)

    massiv Data.Massiv.Array.Numeric

    Multiply matrix by a column vector. Same as .>< but returns computed version of a vector Throws Exception: SizeMismatchException when inner dimensions of arrays do not match.

  2. multiplyVectorByMatrix :: (MonadThrow m, Numeric r e, Manifest r e) => Vector r e -> Matrix r e -> m (Vector r e)

    massiv Data.Massiv.Array.Numeric

    Multiply a row vector by a matrix. Same as ><. but returns computed vector instead of a delayed one. Throws Exception: SizeMismatchException when inner dimensions of arrays do not match.

  3. type MMatrix s r e = MArray s r Ix2 e

    massiv Data.Massiv.Core

    Type synonym for a two-dimentsional mutable array, or simply a mutable matrix.

  4. type Matrix r e = Array r Ix2 e

    massiv Data.Massiv.Core

    Type synonym for a two-dimentsional array, or simply a matrix.

  5. toStreamIx :: Stream r ix e => Array r ix e -> Steps Id (ix, e)

    massiv Data.Massiv.Core

    No documentation available.

  6. type HighIxN (n :: Natural) = (4 <= n, KnownNat n, KnownNat n - 1, Index IxN n - 1, IxN n - 1 ~Ix n - 1)

    massiv Data.Massiv.Core.Index

    Constraint synonym that encapsulates all constraints needed for dimension 4 and higher.

  7. fromIx2 :: Ix2 -> Ix2T

    massiv Data.Massiv.Core.Index

    Convert an Ix2 to Int tuple

    Example

    >>> fromIx2 (2 :. 3)
    (2,3)
    

  8. fromIx3 :: Ix3 -> Ix3T

    massiv Data.Massiv.Core.Index

    Convert an Ix3 to Int 3-tuple

    Example

    >>> fromIx3 (1 :>  2 :. 3)
    (1,2,3)
    

  9. fromIx4 :: Ix4 -> Ix4T

    massiv Data.Massiv.Core.Index

    Convert an Ix4 to Int 4-tuple

    Example

    >>> fromIx4 (1 :> 2 :> 3 :. 4)
    (1,2,3,4)
    

  10. fromIx5 :: Ix5 -> Ix5T

    massiv Data.Massiv.Core.Index

    Convert an Ix5 to Int 5-tuple

    Example

    >>> fromIx5 (1 :> 2 :> 3 :> 4 :. 5)
    (1,2,3,4,5)
    

Page 259 of many | Previous | Next