lilypond-0.1.17
[lilypond.git] / hdr / leastsquares.hh
blob35b1e1d34b912f0c71bcd52fac37e670ea88bcf4
1 /*
2 leastsquare.hh -- part of LilyPond
4 (c) 1996,97 Han-Wen Nienhuys
5 */
7 #ifndef LEASTSQUARE_HH
8 #define LEASTSQUARE_HH
9 #include "varray.hh"
10 #include "offset.hh"
13 /**
14 Least squares minimisation in 2 variables.
16 struct Least_squares {
17 Array<Offset> input;
18 void minimise(Real &coef, Real &offset);
19 void OK() const;
23 #endif // LEASTSQUARE_HH