Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Numerical Java Libraries [closed]

Tags:

java

numerical

Most of my code is in Java. For standardized algorithms: matrix operations, FFT, ... I would prefer to not use my own pure Java implementations, and are perfectly happy using unsafe FFI/JNI calls.

What are the libraries I should look into?

Thanks!

like image 680
anon Avatar asked Jan 12 '10 09:01

anon


3 Answers

Apache commons-math

Commons Math is a library of lightweight, self-contained mathematics and statistics components addressing the most common problems not available in the Java programming language

like image 88
Bozho Avatar answered Oct 20 '22 12:10

Bozho


CERN's colt library

Colt provides a set of Open Source Libraries for High Performance Scientific and Technical Computing in Java.

like image 28
Andreas Dolk Avatar answered Oct 20 '22 14:10

Andreas Dolk


For Specialised numerics computation look at the General Numerics section of NIST

like image 1
Narayan Avatar answered Oct 20 '22 13:10

Narayan