2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1996--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
6 LilyPond is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 LilyPond is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
20 #include "least-squares.hh"
25 minimise_least_squares (Real *coef, Real *offset,
26 vector<Offset> const &input)
33 for (vsize i = 0; i < input.size (); i++)
35 Real x = input[i][X_AXIS];
36 Real y = input[i][Y_AXIS];
43 int count = input.size ();
48 Real den = (count * sqx - sqr (sx));
51 programming_error ("minimise_least_squares (): Nothing to minimise\n"
52 "This means that vertical spacing is triggered\n"
53 "before line breaking\n");
55 *offset = count ? sy / count : 0.0;
59 *coef = (count * sxy - sx * sy) / den;
60 *offset = (sy - (*coef) * sx) / count;