Ticket #11706: besseltest.cpp

File besseltest.cpp, 255 bytes (added by Jufangliang@…, 7 years ago)

Sorry, the cpp file should be this.

Line 
1#include <boost/math/special_functions/bessel.hpp>
2#include <iostream>
3/*using namespace std;*/
4int main(){
5 std::complex<double> c(1,1);
6 std::cout<<boost::math::cyl_bessel_i(1,5)<<std::endl;
7 std::cout<<boost::math::cyl_bessel_i(1,c)<<std::endl;
8}