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.
-
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.
-
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.
type
MMatrix s r e = MArray s r Ix2 emassiv Data.Massiv.Core Type synonym for a two-dimentsional mutable array, or simply a mutable matrix.
type
Matrix r e = Array r Ix2 emassiv Data.Massiv.Core Type synonym for a two-dimentsional array, or simply a matrix.
toStreamIx :: Stream r ix e => Array r ix e -> Steps Id (ix, e)massiv Data.Massiv.Core No documentation available.
-
massiv Data.Massiv.Core.Index Constraint synonym that encapsulates all constraints needed for dimension 4 and higher.
-
massiv Data.Massiv.Core.Index Example
>>> fromIx2 (2 :. 3) (2,3)
-
massiv Data.Massiv.Core.Index Example
>>> fromIx3 (1 :> 2 :. 3) (1,2,3)
-
massiv Data.Massiv.Core.Index Example
>>> fromIx4 (1 :> 2 :> 3 :. 4) (1,2,3,4)
-
massiv Data.Massiv.Core.Index Example
>>> fromIx5 (1 :> 2 :> 3 :> 4 :. 5) (1,2,3,4,5)