Special.Jacobi Method

Note: This API is now obsolete.
Evaluates the Jacobi elliptic functions sn, cn, and dn.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
C#
[ObsoleteAttribute("Use the JacobiElliptic method instead")]
public static void Jacobi(
	double x,
	double k,
	out double sn,
	out double cn,
	out double dn
)

Parameters

x  Double
A real number.
k  Double
The modulus.
sn  Double
When this method returns, the value of sn(x, k).
cn  Double
When this method returns, the value of cn(x, k).
dn  Double
When this method returns, the value of dn(x, k).

Remarks

Note that the second parameter, k is the modulus. Other parameterizations exist, including the squared modulus, m. In this case, sn(x|m) = sn(x, k) with k = sqrt(m), and similarly for the other functions.

See Also