summaryrefslogtreecommitdiffstats
path: root/src/2geom/numeric
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-09-01 19:29:30 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-09-01 19:29:30 +0000
commit0509575421dcc13079ea20f68592bc2fe05d8e52 (patch)
tree9d8993bc4a3431e16024f12390fd2fd9bda46243 /src/2geom/numeric
parentyet another update of ru.po (diff)
downloadinkscape-0509575421dcc13079ea20f68592bc2fe05d8e52.tar.gz
inkscape-0509575421dcc13079ea20f68592bc2fe05d8e52.zip
update 2geom (rev. 1569)
(bzr r6748)
Diffstat (limited to 'src/2geom/numeric')
-rw-r--r--src/2geom/numeric/fitting-model.h24
-rw-r--r--src/2geom/numeric/fitting-tool.h11
2 files changed, 34 insertions, 1 deletions
diff --git a/src/2geom/numeric/fitting-model.h b/src/2geom/numeric/fitting-model.h
index de8f24760..564663cf7 100644
--- a/src/2geom/numeric/fitting-model.h
+++ b/src/2geom/numeric/fitting-model.h
@@ -47,6 +47,30 @@
namespace Geom { namespace NL {
+/*
+ * A model is an abstraction for an expression dependent from a parameter where
+ * the coefficients of this expression are the unknowns of the fitting problem.
+ * For a ceratain number of parameter values we know the related values
+ * the expression evaluates to: from each parameter value we get a row of
+ * the matrix of the fitting problem, from each expression value we get
+ * the related constant term.
+ * Example: given the model a*x^2 + b*x + c = 0; from x = 1 we get
+ * the equation a + b + c = 0, in this example the constant term is always
+ * the same for each parameter value.
+ *
+ * A model is required to implement 3 methods:
+ *
+ * - size : returns the number of unknown coefficients that appear in
+ * the expression of the fitting problem;
+ * - feed : its input is a parameter value and the related expression value,
+ * it generates a matrix row and a new entry of the constant vector
+ * of the fitting problem;
+ * - instance : it has an input parameter represented by the raw vector
+ * solution of the fitting problem and an output parameter
+ * of type InstanceType that return a specific object that is
+ * generated using the fitting problem solution, in the example
+ * above the object could be a Poly type.
+ */
/*
* completely unknown models must inherit from this template class;
diff --git a/src/2geom/numeric/fitting-tool.h b/src/2geom/numeric/fitting-tool.h
index d589d86e3..47c588cb2 100644
--- a/src/2geom/numeric/fitting-tool.h
+++ b/src/2geom/numeric/fitting-tool.h
@@ -43,11 +43,20 @@
#include <vector>
+/*
+ * The least_square_fitter class represents a tool for solving a fitting
+ * problem with respect to a given model that represents an expression
+ * dependent from a parameter where the coefficients of this expression
+ * are the unknowns of the fitting problem.
+ * The minimizing solution is found by computing the pseudo-inverse
+ * of the problem matrix
+ */
+
+
namespace Geom { namespace NL {
namespace detail {
-
template< typename ModelT>
class lsf_base
{