@@ -17,10 +17,10 @@ public static class Matrix
17
17
/// <summary>
18
18
/// Primitive of the findBestNDiscords function.
19
19
/// </summary>
20
- /// <param name="profile">The matrix profile containing the minimum distance of each subsequence</param>
21
- /// <param name="index">The matrix profile index containing the index of the most similar subsequence</param>
22
- /// <param name="m">Length of the matrix profile</param>
23
- /// <param name="n">Number of discords to extract</param>
20
+ /// <param name="profile">The matrix profile containing the minimum distance of each subsequence. </param>
21
+ /// <param name="index">The matrix profile index containing the index of the most similar subsequence. </param>
22
+ /// <param name="m">Length of the matrix profile. </param>
23
+ /// <param name="n">Number of discords to extract. </param>
24
24
/// <param name="selfJoin">Indicates whether the input profile comes from a self join operation or not. It determines
25
25
/// whether the mirror similar region is included in the output or not.</param>
26
26
/// <returns>Tuple with the distance of the best N discords, the indices of the best N discords and
@@ -78,9 +78,8 @@ public static Tuple<KhivaArray, KhivaArray, KhivaArray> FindBestNMotifs(KhivaArr
78
78
/// <param name="tssa">Query time series.</param>
79
79
/// <param name="tssb">Reference time series.</param>
80
80
/// <param name="m">Pointer to a long with the length of the subsequence.</param>
81
- /// <returns>Tuple with
82
- /// the matrix profile, which has the distance to the closer element of the subsequence from 'tssa' in 'tssb' and
83
- /// the matrix profile index, which points to where the aforementioned minimum is located.</returns>
81
+ /// <returns>Tuple with the matrix profile, which has the distance to the closer element of the subsequence from
82
+ /// 'tssa' in 'tssb' and the matrix profile index, which points to where the aforementioned minimum is located.</returns>
84
83
public static Tuple < KhivaArray , KhivaArray > Stomp ( KhivaArray tssa , KhivaArray tssb , long m )
85
84
{
86
85
var aReference = tssa . Reference ;
@@ -103,9 +102,9 @@ public static Tuple<KhivaArray, KhivaArray> Stomp(KhivaArray tssa, KhivaArray ts
103
102
/// </summary>
104
103
/// <param name="tss">Query and reference time series.</param>
105
104
/// <param name="m">Pointer to a long with the length of the subsequence.</param>
106
- /// <returns>Tuple with
107
- /// the matrix profile, which has the distance to the closer element of the subsequence from 'tss' in a different location of itself and
108
- /// the matrix profile index, which points to where the aforementioned minimum is located.</returns>
105
+ /// <returns>Tuple with the matrix profile, which has the distance to the closer element of the subsequence from
106
+ /// 'tss' in a different location of itself and the matrix profile index, which points to where the aforementioned
107
+ /// minimum is located.</returns>
109
108
public static Tuple < KhivaArray , KhivaArray > StompSelfJoin ( KhivaArray tss , long m )
110
109
{
111
110
var reference = tss . Reference ;
0 commit comments