summaryrefslogtreecommitdiff
path: root/lib/Numeric/LinearAlgebra
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/Numeric/LinearAlgebra
parentbca302fae9561944280d2230699bdf252d0375fc (diff)
make empty lines with backslashes CPP friendly
Diffstat (limited to 'lib/Numeric/LinearAlgebra')
-rw-r--r--lib/Numeric/LinearAlgebra/Algorithms.hs4
1 files changed, 2 insertions, 2 deletions
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.