Skip to content

Commit 5812bbb

Browse files
authored
Merge pull request #22 from shapelets/fix/documentation
Stomp paper added
2 parents a020459 + bdae945 commit 5812bbb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/main/java/io/shapelets/khiva/Matrix.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ public class Matrix extends Library {
2626
* STOMP algorithm to calculate the matrix profile between 'arrA' and 'arrB' using a subsequence length
2727
* of 'm'.
2828
*
29+
* (1) Yan Zhu, Zachary Zimmerman, Nader Shakibay Senobari, Chin-Chia Michael Yeh, Gareth Funning, Abdullah Mueen,
30+
* Philip Brisk and Eamonn Keogh (2016). Matrix Profile II: Exploiting a Novel Algorithm and GPUs to break
31+
* the one Hundred Million Barrier for Time Series Motifs and Joins. IEEE ICDM 2016.
32+
*
2933
* @param arrA Array containing the input time series.
3034
* @param arrB Array containing the input time series.
3135
* @param m Long with the subsequence length.
@@ -44,6 +48,10 @@ public static Array[] stomp(Array arrA, Array arrB, long m) {
4448
* STOMP algorithm to calculate the matrix profile between 't' and itself using a subsequence length
4549
* of 'm'. This method filters the trivial matches.
4650
*
51+
* (1) Yan Zhu, Zachary Zimmerman, Nader Shakibay Senobari, Chin-Chia Michael Yeh, Gareth Funning, Abdullah Mueen,
52+
* Philip Brisk and Eamonn Keogh (2016). Matrix Profile II: Exploiting a Novel Algorithm and GPUs to break
53+
* the one Hundred Million Barrier for Time Series Motifs and Joins. IEEE ICDM 2016.
54+
*
4755
* @param arr Array containing the input time series.
4856
* @param m Long with the subsequence length.
4957
* @return Array of arrays with the Matrix profile and index.

0 commit comments

Comments
 (0)