diff options
Diffstat (limited to 'packages/base/src/Numeric/LinearAlgebra/Devel.hs')
-rw-r--r-- | packages/base/src/Numeric/LinearAlgebra/Devel.hs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/base/src/Numeric/LinearAlgebra/Devel.hs b/packages/base/src/Numeric/LinearAlgebra/Devel.hs index f572656..36c5f03 100644 --- a/packages/base/src/Numeric/LinearAlgebra/Devel.hs +++ b/packages/base/src/Numeric/LinearAlgebra/Devel.hs | |||
@@ -20,8 +20,7 @@ module Numeric.LinearAlgebra.Devel( | |||
20 | module Internal.Foreign, | 20 | module Internal.Foreign, |
21 | 21 | ||
22 | -- * FFI tools | 22 | -- * FFI tools |
23 | -- | Illustrative usage examples can be found | 23 | -- | See @examples/devel@ in the repository. |
24 | -- in the @examples\/devel@ folder included in the package. | ||
25 | 24 | ||
26 | createVector, createMatrix, | 25 | createVector, createMatrix, |
27 | vec, mat, omat, | 26 | vec, mat, omat, |
@@ -36,7 +35,7 @@ module Numeric.LinearAlgebra.Devel( | |||
36 | 35 | ||
37 | -- * ST | 36 | -- * ST |
38 | -- | In-place manipulation inside the ST monad. | 37 | -- | In-place manipulation inside the ST monad. |
39 | -- See examples\/inplace.hs in the distribution. | 38 | -- See @examples/inplace.hs@ in the repository. |
40 | 39 | ||
41 | -- ** Mutable Vectors | 40 | -- ** Mutable Vectors |
42 | STVector, newVector, thawVector, freezeVector, runSTVector, | 41 | STVector, newVector, thawVector, freezeVector, runSTVector, |
@@ -44,7 +43,7 @@ module Numeric.LinearAlgebra.Devel( | |||
44 | -- ** Mutable Matrices | 43 | -- ** Mutable Matrices |
45 | STMatrix, newMatrix, thawMatrix, freezeMatrix, runSTMatrix, | 44 | STMatrix, newMatrix, thawMatrix, freezeMatrix, runSTMatrix, |
46 | readMatrix, writeMatrix, modifyMatrix, liftSTMatrix, | 45 | readMatrix, writeMatrix, modifyMatrix, liftSTMatrix, |
47 | axpy,scal,swap, extractMatrix, setMatrix, mutable, rowOpST, | 46 | mutable, extractMatrix, setMatrix, rowOper, RowOper(..), RowRange(..), ColRange(..), |
48 | -- ** Unsafe functions | 47 | -- ** Unsafe functions |
49 | newUndefinedVector, | 48 | newUndefinedVector, |
50 | unsafeReadVector, unsafeWriteVector, | 49 | unsafeReadVector, unsafeWriteVector, |