summaryrefslogtreecommitdiff
path: root/hdr/leastsquares.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hdr/leastsquares.hh')
-rw-r--r--hdr/leastsquares.hh19
1 files changed, 19 insertions, 0 deletions
diff --git a/hdr/leastsquares.hh b/hdr/leastsquares.hh
new file mode 100644
index 0000000000..71586d8d5c
--- /dev/null
+++ b/hdr/leastsquares.hh
@@ -0,0 +1,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
+