Least Squares C# library - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:44:18Z http://stackoverflow.com/feeds/question/350852 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/350852/least-squares-c-library 5 Least Squares C# library Robert Wilkinson 2008-12-08T20:52:29Z 2009-08-21T19:55:38Z <p>I am looking to perform a polynomial least squares regression and am looking for a C# library to do the calculations for me. </p> <p>I pass in the data points and the degree of polynomal (2nd order, 3rd order, etc) and it returns either the C0, C1, C2 etc. constant values or the calculated values "predictions".</p> <p>Note: I am using Least Squares to create some forecasting reports for disk usage, database size and table size.</p> http://stackoverflow.com/questions/350852/least-squares-c-library/350931#350931 1 Answer by dmckee for Least Squares C# library dmckee 2008-12-08T21:16:23Z 2008-12-08T21:57:38Z <p>In the general case you want an "optimizer" or "mimimizer". See <A href="http://en.wikipedia.org/wiki/Optimization_(mathematics)#Solvers" rel="nofollow">http://en.wikipedia.org/wiki/Optimization_(mathematics)#Solvers</A> for some exmples. I see that the first link (<a href="http://en.wikipedia.org/wiki/IMSL_Numerical_Libraries" rel="nofollow">http://en.wikipedia.org/wiki/IMSL_Numerical_Libraries</a>) claims to have c# support.</p> <p><hr /></p> <p>Edit: For the limited use that you propose (linear or quadratic polynomials), you could just go to any copy of Numerical Recipies, grab a straight ahead implementation, and translate to your language. A general minimizer is overkill.</p> <p>But note, also, that polynomials may be poor predictors.</p> http://stackoverflow.com/questions/350852/least-squares-c-library/351147#351147 1 Answer by AdamBT for Least Squares C# library AdamBT 2008-12-08T22:20:53Z 2008-12-08T22:20:53Z <p>We have used MathLibX in the past and it has worked quite well. I personally have used it to do a Least Square Fit "prediction" algorithm and found it very easy to use.</p> <p><a href="http://www.mathfunctions.com/index.htm" rel="nofollow">http://www.mathfunctions.com/index.htm</a></p> <p>Price is $80, and it comes with 7 other functions.</p> <p>Good Luck</p> http://stackoverflow.com/questions/350852/least-squares-c-library/353347#353347 0 Answer by Robert Wilkinson for Least Squares C# library Robert Wilkinson 2008-12-09T16:22:41Z 2008-12-09T16:22:41Z <p>AdamBT, Does MathLibX provide royalty free distribution?</p> http://stackoverflow.com/questions/350852/least-squares-c-library/418110#418110 0 Answer by Adam Tegen for Least Squares C# library Adam Tegen 2009-01-06T20:54:39Z 2009-01-06T20:54:39Z <p>You may want to check out <a href="http://www.alglib.net/interpolation/linearleastsquares.php" rel="nofollow">alglib</a>. It is in C++ instead of C#, but you might be able to write a wrapper over it.</p> http://stackoverflow.com/questions/350852/least-squares-c-library/1313936#1313936 2 Answer by JP for Least Squares C# library JP 2009-08-21T19:55:38Z 2009-08-21T19:55:38Z <p>Here is a link for C# code on to do exactly this: <a href="http://www.trentfguidry.net/post/2009/08/01/Linear-Regression-of-Polynomial-Coefficients.aspx" rel="nofollow">http://www.trentfguidry.net/post/2009/08/01/Linear-Regression-of-Polynomial-Coefficients.aspx</a></p> <p>Good luck!</p>