 |
NumCpp
2.4.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
|
Go to the documentation of this file.
30 #if defined(__cpp_lib_math_special_functions) || !defined(NO_USE_BOOST)
36 #ifdef __cpp_lib_math_special_functions
39 #include "boost/math/special_functions/bessel.hpp"
57 template<
typename dtype>
62 #ifdef __cpp_lib_math_special_functions
63 return std::sph_neumann(inV, inX);
65 return boost::math::sph_neumann(inV, inX);
80 template<
typename dtype>
86 [inV](dtype inX) ->
auto
88 return spherical_bessel_yn(inV, inX);
96 #endif // #if defined(__cpp_lib_math_special_functions) || !defined(NO_USE_BOOST)
auto arccos(dtype inValue) noexcept
Definition: arccos.hpp:51
Shape shape() const noexcept
Definition: NdArrayCore.hpp:4356
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:37
OutputIt transform(InputIt first, InputIt last, OutputIt destination, UnaryOperation unaryFunction)
Definition: StlAlgorithms.hpp:702
std::uint32_t uint32
Definition: Types.hpp:40
const_iterator cend() const noexcept
Definition: NdArrayCore.hpp:1487
Definition: Coordinate.hpp:44
auto spherical_bessel_yn(uint32 inV, dtype inX)
Definition: spherical_bessel_yn.hpp:58
const_iterator cbegin() const noexcept
Definition: NdArrayCore.hpp:1143
iterator begin() noexcept
Definition: NdArrayCore.hpp:1087