Fixes Issue 1504, allowing feather beam line breaking.
[lilypond/patrick.git] / lily / least-squares.cc
blob048920b1926c25a02b56d982b36aff302e8b0893
1 /*
2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 1996--2011 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"
22 #include "warn.hh"
24 void
25 minimise_least_squares (Real *coef, Real *offset,
26 vector<Offset> const &input)
28 Real sx = 0.0;
29 Real sy = 0.0;
30 Real sqx = 0.0;
31 Real sxy = 0.0;
33 for (vsize i = 0; i < input.size ();i++)
35 Real x = input[i][X_AXIS];
36 Real y = input[i][Y_AXIS];
37 sx += x;
38 sy += y;
39 sqx += sqr (x);
40 sxy += x*y;
43 int count = input.size ();
45 *coef = 0.0;
46 *offset = 0.;
48 Real den = (count * sqx - sqr (sx));
49 if (!count || !den)
51 programming_error ("minimise_least_squares (): Nothing to minimise\n"
52 "This means that vertical spacing is triggered\n"
53 "before line breaking\n");
54 *coef = 0.0;
55 *offset = count ? sy / count : 0.0;
57 else
59 *coef = (count * sxy - sx * sy) / den;
60 *offset = (sy - (*coef) * sx) / count;