C++ Bessel function for complex numbers

无人久伴 提交于 2019-12-03 22:09:20

The Boost library implements ordinary Bessel functions of the first and second kind and modified Bessel functions of the first and second kind for both real and complex numbers (see documentation about Bessel functions).

Don't try to reinvent the wheel, just use the Boost implementation which is far superior to anything you could write yourself.

I haven't found that Boost is compatible with complex arguments (though it may a mistake on my part).

The FORTRAN code developed by D.E. Amos (the code used by MATLAB and others) is in the public domain and can be used by anybody. I have been developing a C++ interface to the library, extending it to the case of negative orders. You can check it out on GitHub.

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