summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDon Stewart <dons@galois.com>2008-06-10 00:52:13 +0000
committerDon Stewart <dons@galois.com>2008-06-10 00:52:13 +0000
commit8fdd2158ab7a122e9c72a7f41c8bac1a794cf53c (patch)
tree7ef96bf7953350b6704095efced2d0c21fb7c751 /lib
parentbca302fae9561944280d2230699bdf252d0375fc (diff)
make empty lines with backslashes CPP friendly
Diffstat (limited to 'lib')
-rw-r--r--lib/Numeric/GSL/Matrix.hs2
-rw-r--r--lib/Numeric/GSL/Minimization.hs12
-rw-r--r--lib/Numeric/LinearAlgebra/Algorithms.hs4
3 files changed, 9 insertions, 9 deletions
diff --git a/lib/Numeric/GSL/Matrix.hs b/lib/Numeric/GSL/Matrix.hs
index acf4e77..370356f 100644
--- a/lib/Numeric/GSL/Matrix.hs
+++ b/lib/Numeric/GSL/Matrix.hs
@@ -299,7 +299,7 @@ L \* U obtains a permuted version of the original matrix:
299 2.+3.i -7. 0. 299 2.+3.i -7. 0.
300 1. 2. -3. 300 1. 2. -3.
301 1. -1.i 2.i 301 1. -1.i 2.i
302\ 302\ -- CPP
303\> l \<\> u 303\> l \<\> u
304 2.+3.i -7. 0. 304 2.+3.i -7. 0.
305 1. 2. -3. 305 1. 2. -3.
diff --git a/lib/Numeric/GSL/Minimization.hs b/lib/Numeric/GSL/Minimization.hs
index 0a2d577..a1d009b 100644
--- a/lib/Numeric/GSL/Minimization.hs
+++ b/lib/Numeric/GSL/Minimization.hs
@@ -31,14 +31,14 @@ import Foreign.C.Types(CInt)
31{- | The method of Nelder and Mead, implemented by /gsl_multimin_fminimizer_nmsimplex/. The gradient of the function is not required. This is the example in the GSL manual: 31{- | The method of Nelder and Mead, implemented by /gsl_multimin_fminimizer_nmsimplex/. The gradient of the function is not required. This is the example in the GSL manual:
32 32
33@minimize f xi = minimizeNMSimplex f xi (replicate (length xi) 1) 1e-2 100 33@minimize f xi = minimizeNMSimplex f xi (replicate (length xi) 1) 1e-2 100
34\ 34\ --
35f [x,y] = 10*(x-1)^2 + 20*(y-2)^2 + 30 35f [x,y] = 10*(x-1)^2 + 20*(y-2)^2 + 30
36\ 36\ --
37main = do 37main = do
38 let (s,p) = minimize f [5,7] 38 let (s,p) = minimize f [5,7]
39 print s 39 print s
40 print p 40 print p
41\ 41\ --
42\> main 42\> main
43[0.9920430849306285,1.9969168063253164] 43[0.9920430849306285,1.9969168063253164]
440. 512.500 1.082 6.500 5. 440. 512.500 1.082 6.500 5.
@@ -104,14 +104,14 @@ foreign import ccall "gsl-aux.h minimize"
104 104
105@minimize = minimizeConjugateGradient 1E-2 1E-4 1E-3 30 105@minimize = minimizeConjugateGradient 1E-2 1E-4 1E-3 30
106f [x,y] = 10*(x-1)^2 + 20*(y-2)^2 + 30 106f [x,y] = 10*(x-1)^2 + 20*(y-2)^2 + 30
107\ 107\ --
108df [x,y] = [20*(x-1), 40*(y-2)] 108df [x,y] = [20*(x-1), 40*(y-2)]
109\ 109\ --
110main = do 110main = do
111 let (s,p) = minimize f df [5,7] 111 let (s,p) = minimize f df [5,7]
112 print s 112 print s
113 print p 113 print p
114\ 114\ --
115\> main 115\> main
116[1.0,2.0] 116[1.0,2.0]
117 0. 687.848 4.996 6.991 117 0. 687.848 4.996 6.991
diff --git a/lib/Numeric/LinearAlgebra/Algorithms.hs b/lib/Numeric/LinearAlgebra/Algorithms.hs
index 1de018c..bbc5986 100644
--- a/lib/Numeric/LinearAlgebra/Algorithms.hs
+++ b/lib/Numeric/LinearAlgebra/Algorithms.hs
@@ -300,12 +300,12 @@ multiplicative factor of the default tolerance used by GNU-Octave (see 'pinv').
300@\> let m = 'fromLists' [[1,0, 0] 300@\> let m = 'fromLists' [[1,0, 0]
301 ,[0,1, 0] 301 ,[0,1, 0]
302 ,[0,0,1e-10]] 302 ,[0,0,1e-10]]
303\ 303\ --
304\> 'pinv' m 304\> 'pinv' m
3051. 0. 0. 3051. 0. 0.
3060. 1. 0. 3060. 1. 0.
3070. 0. 10000000000. 3070. 0. 10000000000.
308\ 308\ --
309\> pinvTol 1E8 m 309\> pinvTol 1E8 m
3101. 0. 0. 3101. 0. 0.
3110. 1. 0. 3110. 1. 0.