summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra/Data.hs
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Numeric/LinearAlgebra/Data.hs')
-rw-r--r--lib/Numeric/LinearAlgebra/Data.hs97
1 files changed, 0 insertions, 97 deletions
diff --git a/lib/Numeric/LinearAlgebra/Data.hs b/lib/Numeric/LinearAlgebra/Data.hs
deleted file mode 100644
index a3639d5..0000000
--- a/lib/Numeric/LinearAlgebra/Data.hs
+++ /dev/null
@@ -1,97 +0,0 @@
1--------------------------------------------------------------------------------
2{- |
3Module : Numeric.LinearAlgebra.Data
4Copyright : (c) Alberto Ruiz 2014
5License : GPL
6
7Maintainer : Alberto Ruiz
8Stability : provisional
9
10-}
11--------------------------------------------------------------------------------
12
13module Numeric.LinearAlgebra.Data(
14 -- * Vector
15 -- | 1D arrays are storable vectors from the vector package.
16
17 Vector, (|>), dim, (@>),
18
19 -- * Matrix
20 Matrix, (><), size, (@@>), trans, ctrans,
21
22 -- * Construction functions
23
24 scalar, konst, build, assoc, accum, linspace, -- ones, zeros,
25
26 -- * Data manipulation
27
28 fromList, toList, subVector, takesV, vjoin,
29
30 flatten, reshape, asRow, asColumn, row, col,
31
32 fromRows, toRows, fromColumns, toColumns, fromLists, toLists,
33
34 takeRows, dropRows, takeColumns, dropColumns, subMatrix, (?), (¿), fliprl, flipud,
35
36 -- * Diagonal matrices
37
38 ident, diag, diagl, diagRect, takeDiag,
39
40 -- * Block matrices
41
42 fromBlocks, (¦), (——), diagBlock, repmat, toBlocks, toBlocksEvery,
43
44 -- * Mapping functions
45
46 conj, cmap, step, cond,
47
48 -- * Find elements
49
50 find, maxIndex, minIndex, maxElement, minElement, atIndex,
51
52 -- * Products
53
54 (<>), (·), outer, kronecker, cross,
55 sumElements, prodElements, absSum,
56 optimiseMult,
57
58 corr, conv, corrMin, corr2, conv2,
59
60 (<\>),
61
62 -- * Random arrays
63
64 rand, randn, RandDist(..), randomVector, gaussianSample, uniformSample,
65
66 -- * IO
67
68 disp, dispf, disps, dispcf, vecdisp, latexFormat, format,
69 loadMatrix, saveMatrix, fromFile, fileDimensions,
70 readMatrix,
71 fscanfVector, fprintfVector, freadVector, fwriteVector,
72
73-- * Element conversion
74 Convert(..),
75 Complexable(),
76 RealElement(),
77
78 RealOf, ComplexOf, SingleOf, DoubleOf,
79
80 IndexOf,
81
82 module Data.Complex,
83
84 -- * Misc
85 scale, meanCov, arctan2,
86 rows, cols,
87 separable,
88 fromArray2D
89
90) where
91
92import Data.Packed.Vector
93import Data.Packed.Matrix
94import Numeric.Container
95import Numeric.LinearAlgebra.Util
96import Data.Complex
97