Package com.imsl.stat
Interface TimeSeriesOperations.Function
- Enclosing class:
- TimeSeriesOperations
public static interface TimeSeriesOperations.Function
Public interface for the user-supplied function that defines how to
combine two synchronous time series values.
-
Method Summary
Modifier and TypeMethodDescriptiondoublecompute(double x, double y) Public interface for the user-supplied function to combine two time series values that occur at the same date and time.
-
Method Details
-
compute
double compute(double x, double y) Public interface for the user-supplied function to combine two time series values that occur at the same date and time.- Parameters:
x- adoublerepresenting the value of the first time series.y- adoublerepresenting the value of the second time series.- Returns:
- a
doublerepresenting the combination of the two inputs.
-