Compute complex math (integration, derivation, ...)

How can I calculate complex math in a programming language, for example:

  • Integration
  • Conclusion
  • some other non-trivial math

For example, for these languages:

  • Java
  • Ruby on Rails

I know there is Math.NET for C #, but for the rest?

+5
source share
2 answers

I don't know about Ruby, but for the math, I used Apache Commons Math in my Java applications . It provides many reusable components for probability, statistics, linear algebra, and numerical calculus.

+5
source

In java you can try javaCalc

library support :

  • ( ) .
  • (, , ..).
  • (, ) .
  • ( , , ).
  • ( swing).
  • , ( , , ).
+2

All Articles