summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2011-12-07 21:08:55 +0100
committerAlberto Ruiz <aruiz@um.es>2011-12-07 21:08:55 +0100
commit337fefa7879028e1fba6cc820420c4b47f8e22b2 (patch)
tree6c917482b72db5cb57357048c3f7ca6cfd206ad2 /examples
parent196595ecca4232470ce34e6ae1f4e3f297466fc5 (diff)
converting to git
Diffstat (limited to 'examples')
-rw-r--r--examples/fitting.hs24
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/fitting.hs b/examples/fitting.hs
deleted file mode 100644
index a8f6b1c..0000000
--- a/examples/fitting.hs
+++ /dev/null
@@ -1,24 +0,0 @@
1-- nonlinear least-squares fitting
2
3import Numeric.GSL.Fitting
4import Numeric.LinearAlgebra
5
6xs = map return [0 .. 39]
7sigma = 0.1
8ys = map return $ toList $ fromList (map (head . expModel [5,0.1,1]) xs)
9 + scalar sigma * (randomVector 0 Gaussian 40)
10
11dat :: [([Double],([Double],Double))]
12
13dat = zip xs (zip ys (repeat sigma))
14
15expModel [a,lambda,b] [t] = [a * exp (-lambda * t) + b]
16
17expModelDer [a,lambda,b] [t] = [[exp (-lambda * t), -t * a * exp(-lambda*t) , 1]]
18
19(sol,path) = fitModelScaled 1E-4 1E-4 20 (expModel, expModelDer) dat [1,0,0]
20
21main = do
22 print dat
23 print path
24 print sol