|
| Test.QuickCheck.Matrix.Tri.Dense | | Stability | experimental | | Maintainer | Patrick Perry <patperry@stanford.edu> |
|
|
|
| Description |
|
|
| Synopsis |
|
| triMatrix :: (BLAS1 e, Arbitrary e) => UpLo -> Diag -> (Int, Int) -> Gen (Matrix (m, n) e) | | | isTriIndex :: UpLo -> Diag -> (Int, Int) -> Bool | | | data TriMatrix m n e = TriMatrix (Tri Matrix (m, n) e) (Matrix (m, n) e) | | | data TriMatrixMV m n e = TriMatrixMV (Tri Matrix (m, n) e) (Matrix (m, n) e) (Vector n e) | | | data TriMatrixMM m k n e = TriMatrixMM (Tri Matrix (m, k) e) (Matrix (m, k) e) (Matrix (k, n) e) | | | data TriMatrixSV m n e = TriMatrixSV (Tri Matrix (m, n) e) (Vector m e) | | | data TriMatrixSM m k n e = TriMatrixSM (Tri Matrix (m, k) e) (Matrix (m, n) e) |
|
|
| Documentation |
|
|
|
|
|
|
| A triangular matrix and an equivalent dense matrix
| | Constructors | | Instances | |
|
|
|
| A triangular matrix, and equivalent dense matrix, and a vector in
their domain.
| | Constructors | | Instances | |
|
|
| data TriMatrixMM m k n e | Source |
|
| A triangular matrix, and equivalent dense matrix, and a matrix in
their domain.
| | Constructors | | Instances | |
|
|
|
| A triangular matrix and a vector in its range
| | Constructors | | Instances | |
|
|
| data TriMatrixSM m k n e | Source |
|
| A triangular matrix and a matrix in its range
| | Constructors | | Instances | |
|
|
| Produced by Haddock version 2.3.0 |