1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* leastsquare.hh -- part of LilyPond (c) 1996 Han-Wen Nienhuys */ #ifndef LEASTSQUARE_HH #define LEASTSQUARE_HH #include "vray.hh" #include "boxes.hh" struct Least_squares { svec<Offset> input; void minimise(Real &coef, Real &offset); }; #endif // LEASTSQUARE_HH