Class StretchingComplexity

  • All Implemented Interfaces:
    ITimeSeriesComplexity

    public class StretchingComplexity
    extends java.lang.Object
    implements ITimeSeriesComplexity
    Stretching Complexity that calulates the length of a time series when stretched to a straight line. $$ c = sum_{i=1}^n-1 \sqrt{ (t_2 - t_1)^2 + (T_{i+1} - T_i)^2 }$$ where $t_i$ are the timestamps (here $t_i = i$) an $T_i$ are the values of the time series.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      double complexity​(double[] t)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • StretchingComplexity

        public StretchingComplexity()