public interface ITimeSeriesDistanceWithTimestamps extends ITimeSeriesDistance
| Modifier and Type | Method and Description |
|---|---|
default double |
distance(double[] a,
double[] b)
Calculates the distance between two time series.
|
double |
distance(double[] a,
double[] tA,
double[] b,
double[] tB)
Calculates the distance between two time series.
|
double distance(double[] a,
double[] tA,
double[] b,
double[] tB)
a - First time series.tA - Timestamps for the first time series.b - Second time series.tB - Timestamps for the second times series.default double distance(double[] a,
double[] b)
ITimeSeriesDistancedistance in interface ITimeSeriesDistancea - First time series.b - Second time series.