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: 9.0.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
On return, the value of sn(x, k).
cn  Double
On return, the value of cn(x, k).
dn  Double
On return, 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