From 1a9473f2e6ffeff838b340e8790bcb75ee58d0a3 Mon Sep 17 00:00:00 2001
From: koennecke
+The peak optimiser supports another optimisation algorithm which is faster but +may not be as accurate. This is hill climbing: +
+while errors gt precision and cycles lt maxcycles + for all variables + find the direction into which the intensity rises + step into this direction until the intensity drops + end for +end while ++ +
The Peak Optimiser is implemented as an object with the name opti. It understand the following commands:
+It is the users reponsability to provide meaningful step widths. Usually this is +dependent on the instrument resolution and thus fairly constant. Also these +optimisation algorithms will fail if the instrument is not positioned at the +flank of a peak. Probaly the best will be to do several cycles of hill +climbing first, followed by one cycle of scan optimisation for extra accuracy. +