12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- namespace py = pybind11;
- py::tuple py_ScattCoeffs(const py::array_t<double, py::array::c_style | py::array::forcecast> &py_x,
- const py::array_t<std::complex<double>, py::array::c_style | py::array::forcecast> &py_m,
- const int nmax=-1, const int pl=-1);
- py::tuple py_scattnlay(const py::array_t<double, py::array::c_style | py::array::forcecast> &py_x,
- const py::array_t<std::complex<double>, py::array::c_style | py::array::forcecast> &py_m,
- const py::array_t<double, py::array::c_style | py::array::forcecast> &py_theta,
- const int nmax=-1, const int pl=-1);
- py::tuple py_fieldnlay(const py::array_t<double, py::array::c_style | py::array::forcecast> &py_x,
- const py::array_t<std::complex<double>, py::array::c_style | py::array::forcecast> &py_m,
- const py::array_t<double, py::array::c_style | py::array::forcecast> &py_Xp,
- const py::array_t<double, py::array::c_style | py::array::forcecast> &py_Yp,
- const py::array_t<double, py::array::c_style | py::array::forcecast> &py_Zp,
- const int nmax=-1, const int pl=-1);
|