]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/leastsquares.hh
release: 1.0.1
[lilypond.git] / lily / include / leastsquares.hh
1 /*
2   leastsquare.hh -- part of GNU LilyPond
3
4   (c) 1996--1998 Han-Wen Nienhuys
5 */
6
7 #ifndef LEASTSQUARE_HH
8 #define LEASTSQUARE_HH
9 #include "array.hh"
10 #include "offset.hh"
11
12
13 /**
14   Least squares minimisation in 2 variables.
15   */
16 struct Least_squares {
17     Array<Offset> input;
18     void minimise (Real &coef, Real &offset);
19     void OK() const;
20 };
21
22
23 #endif // LEASTSQUARE_HH
24