summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--lib/Numeric/GSL/Minimization.hs4
2 files changed, 4 insertions, 2 deletions
diff --git a/README b/README
index 54495d7..ab912f0 100644
--- a/README
+++ b/README
@@ -219,3 +219,5 @@ lists for their help.
219 219
220- Xiao-Yong Jin reported a bug on x86_64 caused by the assumptions in f2c.h, 220- Xiao-Yong Jin reported a bug on x86_64 caused by the assumptions in f2c.h,
221 which are wrong for this architecture. 221 which are wrong for this architecture.
222
223- Jason Schroeder reported an error in the documentation.
diff --git a/lib/Numeric/GSL/Minimization.hs b/lib/Numeric/GSL/Minimization.hs
index b84da06..0a2d577 100644
--- a/lib/Numeric/GSL/Minimization.hs
+++ b/lib/Numeric/GSL/Minimization.hs
@@ -69,7 +69,7 @@ main = do
69 69
70The path to the solution can be graphically shown by means of: 70The path to the solution can be graphically shown by means of:
71 71
72@'GSL.Plot.mplot' $ drop 3 ('toColumns' p)@ 72@'Graphics.Plot.mplot' $ drop 3 ('toColumns' p)@
73 73
74-} 74-}
75minimizeNMSimplex :: ([Double] -> Double) -- ^ function to minimize 75minimizeNMSimplex :: ([Double] -> Double) -- ^ function to minimize
@@ -130,7 +130,7 @@ main = do
130 130
131The path to the solution can be graphically shown by means of: 131The path to the solution can be graphically shown by means of:
132 132
133@'GSL.Plot.mplot' $ drop 2 ('toColumns' p)@ 133@'Graphics.Plot.mplot' $ drop 2 ('toColumns' p)@
134 134
135-} 135-}
136minimizeConjugateGradient :: 136minimizeConjugateGradient ::