Package org.hipparchus.analysis.function
Class Multiply
- java.lang.Object
 - 
- org.hipparchus.analysis.function.Multiply
 
 
- 
- All Implemented Interfaces:
 BivariateFunction
public class Multiply extends Object implements BivariateFunction
Multiply the two operands. 
- 
- 
Constructor Summary
Constructors Constructor Description Multiply()Empty constructor. 
- 
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.
 
 
 - 
 
 -