
net.seninp.jmotif.sax.registry.SlidingWindowMarkerAlgorithm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmotif-sax Show documentation
Show all versions of jmotif-sax Show documentation
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