2 least-squares.cc -- implement minimise_least_squares
4 source file of the GNU LilyPond music typesetter
6 (c) 1996--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
10 #include "least-squares.hh"
15 minimise_least_squares (Real
* coef
, Real
* offset
,
23 for (int i
=0; i
< input
.size();i
++)
25 Real x
=input
[i
][X_AXIS
];
26 Real y
= input
[i
][Y_AXIS
];
37 Real den
= (N
*sqx
- sqr (sx
));
39 programming_error ("minimise_least_squares(): Nothing to minimise");
41 *coef
= (N
* sxy
- sx
*sy
)/den
;
42 *offset
= (sy
- (*coef
) * sx
)/N
;