12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include <complex>
- #include <vector>
- namespace nmie {
- namespace bessel {
- void calcZeta( std::vector< std::complex<double> >& Zeta,
- std::vector< std::complex<double> >& dZeta,
- int n, std::complex<double>z);
- void csphjy (int n, std::complex<double>z, int& nm,
- std::vector< std::complex<double> >& csj,
- std::vector< std::complex<double> >& cdj,
- std::vector< std::complex<double> >& csy,
- std::vector< std::complex<double> >& cdy );
- double envj (int n, double x );
- int msta2 ( double x, int n, int mp );
- int msta1 ( double x, int mp );
- }
- }
|