What is the best Java numerical method package? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T23:49:32Z http://stackoverflow.com/feeds/question/86500 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/86500/what-is-the-best-java-numerical-method-package 7 What is the best Java numerical method package? Bob Cross 2008-09-17T19:08:47Z 2009-07-02T03:04:58Z <p>I am looking for a Java-based numerical method package that provides functionality including:</p> <ol> <li>Solving systems of equations using different numerical analysis algorithms.</li> <li>Matrix methods (e.g., inversion).</li> <li>Spline approximations.</li> <li>Probability distributions and statistical methods.</li> </ol> <p>In this case, "best" is defined as a package with a mature and usable API, solid performance and numerical accuracy.</p> <p>Edit: derick van brought up a good point in that cost is a factor. I am heavily biased in favor of free packages but others may have a different emphasis.</p> http://stackoverflow.com/questions/86500/what-is-the-best-java-numerical-method-package/86564#86564 5 Answer by Burly for What is the best Java numerical method package? Burly 2008-09-17T19:15:50Z 2008-09-17T19:15:50Z <p>I don't know of a single package that provides all the functionality you are looking for and simultaneously meets all of your requirements (but that doesn't mean there isn't one!).</p> <p>I've had good success using these Java numeric libraries: </p> <ul> <li>Java Numeric Toolkit (JNT) </li> <li>JAva MAtrix package (JAMA)</li> </ul> <p>There is a good reference for Java Numerics from the National Institute of Standards and Technology (NIST) here: <a href="http://math.nist.gov/javanumerics/" rel="nofollow">http://math.nist.gov/javanumerics/</a></p> <p>Hopefully this will point you in the right direction until someone can provide you with the complete, singular answer you are looking for!</p> http://stackoverflow.com/questions/86500/what-is-the-best-java-numerical-method-package/86836#86836 5 Answer by Bob Cross for What is the best Java numerical method package? Bob Cross 2008-09-17T19:42:02Z 2008-09-17T19:42:02Z <p>The <a href="http://commons.apache.org/math/userguide/index.html" rel="nofollow">Apache Commons Math package</a> certainly provides what looks like a <a href="http://commons.apache.org/math/api-1.2/index.html" rel="nofollow">comprehensive API</a> but I do not yet have critical data on the performance or accuracy.</p> http://stackoverflow.com/questions/86500/what-is-the-best-java-numerical-method-package/345582#345582 2 Answer by Carlos Rendon for What is the best Java numerical method package? Carlos Rendon 2008-12-06T00:09:39Z 2008-12-06T00:09:39Z <p>I've used <a href="http://acs.lbl.gov/~hoschek/colt/" rel="nofollow">colt</a> from CERN before but mostly for it's random number generators. It has a mature and stable API, and high performance. </p> http://stackoverflow.com/questions/86500/what-is-the-best-java-numerical-method-package/418774#418774 2 Answer by derick van for What is the best Java numerical method package? derick van 2009-01-07T00:38:46Z 2009-01-07T00:38:46Z <p>You didn't mention cost, so I would have a look at the MATLIB libraries. Certainly they will be well tested and reliable. As for performance I do not know.</p> <p><a href="http://www.mathworks.com/products/javabuilder/" rel="nofollow">http://www.mathworks.com/products/javabuilder/</a></p> <p>They may have something there for you image processing questions as well.</p> http://stackoverflow.com/questions/86500/what-is-the-best-java-numerical-method-package/1072245#1072245 1 Answer by Alex for What is the best Java numerical method package? Alex 2009-07-02T03:04:58Z 2009-07-02T03:04:58Z <p>I think there is a Java port of LAPACK.</p>