Package org.hipparchus.analysis.function
Class Max
- java.lang.Object
-
- org.hipparchus.analysis.function.Max
-
- All Implemented Interfaces:
BivariateFunction
public class Max extends Object implements BivariateFunction
Maximum function.
-
-
Constructor Summary
Constructors Constructor Description Max()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
value(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:
value
in 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.
-
-