Safe Haskell | None |
---|---|
Language | Haskell98 |
Documentation
class C shape => Box shape where Source #
Instances
C size => Box (Hermitian size) Source # | |
(Natural off, C size) => Box (BandedHermitian off size) Source # | |
Defined in Numeric.LAPACK.Matrix.Shape.Private type HeightOf (BandedHermitian off size) Source # type WidthOf (BandedHermitian off size) Source # height :: BandedHermitian off size -> HeightOf (BandedHermitian off size) Source # width :: BandedHermitian off size -> WidthOf (BandedHermitian off size) Source # | |
(Content lo, TriDiag diag, Content up, C size) => Box (Triangular lo diag up size) Source # | |
Defined in Numeric.LAPACK.Matrix.Shape.Private type HeightOf (Triangular lo diag up size) Source # type WidthOf (Triangular lo diag up size) Source # height :: Triangular lo diag up size -> HeightOf (Triangular lo diag up size) Source # width :: Triangular lo diag up size -> WidthOf (Triangular lo diag up size) Source # | |
(C vert, C horiz, C height, C width) => Box (Full vert horiz height width) Source # | |
Defined in Numeric.LAPACK.Matrix.Shape.Private | |
(Eq lower, C vert, C horiz, C height, C width) => Box (Split lower vert horiz height width) Source # | |
Defined in Numeric.LAPACK.Matrix.Shape.Private | |
(Natural sub, Natural super, C vert, C horiz, C height, C width) => Box (Banded sub super vert horiz height width) Source # | |