Least-squares line fitting: Difference between revisions
From JSXGraph Wiki
A WASSERMANN (talk | contribs) No edit summary |
A WASSERMANN (talk | contribs) No edit summary |
||
Line 56: | Line 56: | ||
} | } | ||
} | } | ||
console.log( | var res = JXG.Math.Numerics(A); | ||
console.log(res); | |||
/* | /* | ||
// Now, the general linear least-square fitting problem | // Now, the general linear least-square fitting problem |
Revision as of 16:53, 9 November 2010
This little JXSGraph application finds the line - described by homogeneous coordinates [a,b,c] - that minimizes
- [math]\displaystyle{ \sum_{i=1}^n (ax_i+by_i+cz_i)^2. }[/math]
Coming soon...