What is the best Java numerical method package? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T23:49:32Zhttp://stackoverflow.com/feeds/question/86500http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/86500/what-is-the-best-java-numerical-method-package7What is the best Java numerical method package?Bob Cross2008-09-17T19:08:47Z2009-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#865645Answer by Burly for What is the best Java numerical method package?Burly2008-09-17T19:15:50Z2008-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#868365Answer by Bob Cross for What is the best Java numerical method package?Bob Cross2008-09-17T19:42:02Z2008-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#3455822Answer by Carlos Rendon for What is the best Java numerical method package?Carlos Rendon2008-12-06T00:09:39Z2008-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#4187742Answer by derick van for What is the best Java numerical method package?derick van2009-01-07T00:38:46Z2009-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#10722451Answer by Alex for What is the best Java numerical method package?Alex2009-07-02T03:04:58Z2009-07-02T03:04:58Z<p>I think there is a Java port of LAPACK.</p>