Package org.hipparchus.analysis.function
Class Atan2
- java.lang.Object
 - 
- org.hipparchus.analysis.function.Atan2
 
 
- 
- All Implemented Interfaces:
 BivariateFunction
public class Atan2 extends Object implements BivariateFunction
Arc-tangent function. 
- 
- 
Constructor Summary
Constructors Constructor Description Atan2() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublevalue(double x, double y)Compute the value for the function. 
 - 
 
- 
- 
Method Detail
- 
value
public double value(double x, double y)Compute the value for the function.- Specified by:
 valuein interfaceBivariateFunction- Parameters:
 x- Abscissa for which the function value should be computed.y- Ordinate for which the function value should be computed.- Returns:
 - the value.
 
 
 - 
 
 -