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 Type
    Method
    Description
    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.
  • 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 - a double representing the value of the first time series.
      y - a double representing the value of the second time series.
      Returns:
      a double representing the combination of the two inputs.