diff options
Diffstat (limited to 'lib/Numeric/LinearAlgebra')
-rw-r--r-- | lib/Numeric/LinearAlgebra/Algorithms.hs | 4 |
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 |
305 | 1. 0. 0. | 305 | 1. 0. 0. |
306 | 0. 1. 0. | 306 | 0. 1. 0. |
307 | 0. 0. 10000000000. | 307 | 0. 0. 10000000000. |
308 | \ | 308 | \ -- |
309 | \> pinvTol 1E8 m | 309 | \> pinvTol 1E8 m |
310 | 1. 0. 0. | 310 | 1. 0. 0. |
311 | 0. 1. 0. | 311 | 0. 1. 0. |