Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Jacobi Elliptic Function nd

Synopsis
#include <boost/math/special_functions/jacobi_elliptic.hpp>
namespace boost { namespace math {

 template <class T, class U>
 calculated-result-type jacobi_nd(T k, U u);

 template <class T, class U, class Policy>
 calculated-result-type jacobi_nd(T k, U u, const Policy& pol);

}} // namespaces
Description

This function returns the Jacobi elliptic function nd.

The final Policy argument is optional and can be used to control the behaviour of the function: how it handles errors, what level of precision to use etc. Refer to the policy documentation for more details.

This function is a trivial wrapper around jacobi_elliptic, with:

nd(u, k) = 1 / dn(u, k)


PrevUpHomeNext