Library for polynomial calculus in Java?

Is there any (preferably open source) Java library that allows you to do calculus with a polynomial, for example. addition, multiplication, division by constants, etc.?

In addition, if he will be able to interpolate several two-dimensional points in a polynomial with Lagrange polynomial interpolation, this will be a plus.

+3
source share
2 answers

Maybe you should take a look at the Apache Commons Math Library .

Polynomials are processed using the PolynomialFunction , and you can perform Lagrange interpolation using the PolynomialFunctionLagrangeForm

+7

, , CAS Java:

Java Algebra System (JAS)
http://krum.rz.uni-mannheim.de/jas/

0

All Articles