Java / Scala math library with elliptic integrals and bessel functions?

南笙酒味 提交于 2019-12-04 09:53:35

As far as I'm aware, the most widely used Java math libraries are:

You'll have to investigate their respective APIs though to determine if they provide exactly the functionality you require.

I know that the GNU Scientific Library contains both elliptic integrals and Bessel functions of many kinds. Unfortunately, good mathematics libraries are hard to come by; your best bet may be to wrap the GSL using JNI (or JNA if you can get it to work).

If you really must have pure Java/Scala functions, I guess you could translate the portions of the library you need. It would be a lot of work, but it is GPLed code at least.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!