[C# Helper]
Index Books FAQ Contact About Rod
[Beginning Database Design Solutions, Second Edition]

[Beginning Software Engineering, Second Edition]

[Essential Algorithms, Second Edition]

[The Modern C# Challenge]

[WPF 3d, Three-Dimensional Graphics with WPF and C#]

[The C# Helper Top 100]

[Interview Puzzles Dissected]

[C# 24-Hour Trainer]

[C# 5.0 Programmer's Reference]

[MCSD Certification Toolkit (Exam 70-483): Programming in C#]

Title: Find a linear least squares fit for a set of points in C#

linear least squares

This example shows how you can make a linear least squares fit to a set of data points.

Suppose you have a set of data points that you believe were generated by a process that should ideally be linear. In that case, you might like to find the best parameters m and b to make the line y = m * x + b fit those points as closely as possible.

A common approach to this problem is to minimize the sum of the squares of the vertical distances between the line and the points. For example, suppose the point P0 = (x0, y0) is one of your data points. The vertical error squared for that point is the difference between y0 and the line's Y coordinate for that X position. In this case, that's y0 - (m * x0 + b). To calculate the total error squared, you square this error and add up the results for all of the data points.

Keep in mind that you know all of the points so, for given values of m and b, you can easily loop through all of the points and calculate the error.

Here's a function that does just that:

// Return the error squared. public static double ErrorSquared(List<PointF> points, double m, double b) { double total = 0; foreach (PointF pt in points) { double dy = pt.Y - (m * pt.X + b); total += dy * dy; } return total; }

This code loops through the points subtracting each point's Y coordinate from the coordinate of that line at the point's X position. It squares the error and adds it to the total. When it finishes its loop, the method returns the total of the squared errors.

As a mathematical equation, the error function E is:

Sum[(yi - (m * xi + b)^2]

where the sum is performed over all of the points (xi, yi).

To find the least squares fit, you need to minimize this function E(m, b). That sounds intimidating until you remember that the xi and yi values are all known—they're the values you're trying to fit with the line.

The only variables in this equation are m and b so it's relatively easy to minimize this equation by using a little calculus. Simply take the partial derivatives of E with respect to m and b, set the two resulting equations equal to 0, and solve for m and b.

Taking the partial derivative with respect to m and rearranging a bit to gather common terms and pull constants out of the sums you get:

2 * (m * Sum[xi^2] + b * Sum[xi] - Sum[xi * yi])

Taking the partial derivative with respect to b and rearranging a bit you get:

2 * (m * Sum[xi] + b * Sum[1] - Sum[yi])

To find the minimum for the error function, you set these two equations equal to 0 and solve for m and b.

To make working with the equations easier, let:

(substitutions)

If you make these substitutions and set the equations equal to 0 you get:

(equations)

Solving for m and b gives:

(equations)

Again these look like intimidating equations, but all of the S's are values that you can calculate given the data points that you are trying to fit.

The following code calculates the S's and uses them to find the linear least squares fit for the points in a List<PointF>.

// Find the least squares linear fit. // Return the total error. public static double FindLinearLeastSquaresFit( List<PointF> points, out double m, out double b) { // Perform the calculation. // Find the values S1, Sx, Sy, Sxx, and Sxy. double S1 = points.Count; double Sx = 0; double Sy = 0; double Sxx = 0; double Sxy = 0; foreach (PointF pt in points) { Sx += pt.X; Sy += pt.Y; Sxx += pt.X * pt.X; Sxy += pt.X * pt.Y; } // Solve for m and b. m = (Sxy * S1 - Sx * Sy) / (Sxx * S1 - Sx * Sx); b = (Sxy * Sx - Sy * Sxx) / (Sx * Sx - S1 * Sxx); return Math.Sqrt(ErrorSquared(points, m, b)); }

Download the example to experiment with it and to see additional details.

© 2009-2023 Rocky Mountain Computer Consulting, Inc. All rights reserved.