Least Squares C# library - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T02:44:18Zhttp://stackoverflow.com/feeds/question/350852http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/350852/least-squares-c-library5Least Squares C# libraryRobert Wilkinson2008-12-08T20:52:29Z2009-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#3509311Answer by dmckee for Least Squares C# librarydmckee2008-12-08T21:16:23Z2008-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#3511471Answer by AdamBT for Least Squares C# libraryAdamBT2008-12-08T22:20:53Z2008-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#3533470Answer by Robert Wilkinson for Least Squares C# libraryRobert Wilkinson2008-12-09T16:22:41Z2008-12-09T16:22:41Z<p>AdamBT, Does MathLibX provide royalty free distribution?</p>
http://stackoverflow.com/questions/350852/least-squares-c-library/418110#4181100Answer by Adam Tegen for Least Squares C# libraryAdam Tegen2009-01-06T20:54:39Z2009-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#13139362Answer by JP for Least Squares C# libraryJP2009-08-21T19:55:38Z2009-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>