All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.seninp.jmotif.sax.registry.SlidingWindowMarkerAlgorithm Maven / Gradle / Ivy

Go to download

An implementation of time series Symbolic Aggregate approXimation and HOTSAX algorithms.

The newest version!
package net.seninp.jmotif.sax.registry;

/**
 * Implements a magic array which keeps track of windows that were processed.
 * 
 * @author psenin
 * 
 */
public interface SlidingWindowMarkerAlgorithm {

  /**
   * Marks visited locations (of the magic array).
   * 
   * @param registry The magic array instance.
   * @param startPosition The position to start labeling from.
   * @param intervalLength The length of the interval to be labeled.
   */
  void markVisited(VisitRegistry registry, int startPosition, int intervalLength);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy