Class FieldTheta<T extends CalculusFieldElement<T>>
- java.lang.Object
-
- org.hipparchus.special.elliptic.jacobi.FieldTheta<T>
-
- Type Parameters:
T- the type of the field elements
public class FieldTheta<T extends CalculusFieldElement<T>> extends Object
Values ofJacobi thetafunctions.This is a container for the four Jacobi theta functions θ₁(z|τ), θ₂(z|τ), θ₃(z|τ), and θ₄(z|τ).
- Since:
- 2.0
- See Also:
FieldJacobiTheta
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Ttheta1()Get the value of the θ₁(z|τ) function.Ttheta2()Get the value of the θ₂(z|τ) function.Ttheta3()Get the value of the θ₃(z|τ) function.Ttheta4()Get the value of the θ₄(z|τ) function.
-
-
-
Method Detail
-
theta1
public T theta1()
Get the value of the θ₁(z|τ) function.- Returns:
- θ₁(z|τ)
-
theta2
public T theta2()
Get the value of the θ₂(z|τ) function.- Returns:
- θ₂(z|τ)
-
theta3
public T theta3()
Get the value of the θ₃(z|τ) function.- Returns:
- θ₃(z|τ)
-
theta4
public T theta4()
Get the value of the θ₄(z|τ) function.- Returns:
- θ₄(z|τ)
-
-