home *** CD-ROM | disk | FTP | other *** search
-
- ; CFIT3.EKA
- ;
- ; version 1.0
- ; August 10, 1987
- ; Copyright (c) 1987 Namir Clement Shammas
- ;
- ; Non-linear least-square fitting of a modified crescent shaped model
- ;
- ; general model is: f(t) = a0 - a1 * exp(-k * t)
- ;
- ; where a0, a1 and k are constants, & a0 is approximately equal to a1
-
- $ substlevel = 0
-
- ; state selected model here
- f(t) = a0 - a1 * exp(-k * t)
-
- f(1) = 0.86
- f(2) = 1.65
- f(3) = 2.39
- f(4) = 3.00
- f(5) = 3.58
- f(6) = 4.11
- f(7) = 4.58
- f(8) = 5.01
- f(9) = 5.40
-
- ; Solution is a0 = a1 = 9.1, k1 = 0.1
-
-