Skip to content

Commit baa7917

Browse files
committed
Fixed "out1"
1 parent 2cef5d3 commit baa7917

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

stumpy/scraamp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def _prescraamp(
346346
347347
Returns
348348
-------
349-
out1 : numpy.ndarray
349+
out : numpy.ndarray
350350
The (top-k) matrix profile. When k=1 (default), the first (and only) column
351351
in this 2D array consists of the matrix profile. When k > 1, the output
352352
has exactly `k` columns consisting of the top-k matrix profile.
@@ -802,7 +802,7 @@ def P_(self):
802802
803803
Returns
804804
-------
805-
out1 : numpy.ndarray
805+
out : numpy.ndarray
806806
The updated (top-k) matrix profile. When `k=1` (default), this output is
807807
a 1D array consisting of the updated matrix profile. When `k > 1`, the
808808
output is a 2D array that has exactly `k` columns consisting of the updated

stumpy/scrump.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ def _prescrump(
451451
452452
Returns
453453
-------
454-
out1 : numpy.ndarray
454+
out : numpy.ndarray
455455
The (top-k) matrix profile. When k=1 (default), the first (and only) column
456456
in this 2D array consists of the matrix profile. When k > 1, the output
457457
has exactly `k` columns consisting of the top-k matrix profile.
@@ -1088,7 +1088,7 @@ def P_(self):
10881088
10891089
Returns
10901090
-------
1091-
out1 : numpy.ndarray
1091+
out : numpy.ndarray
10921092
The updated (top-k) matrix profile
10931093
"""
10941094
if self._k == 1:

0 commit comments

Comments
 (0)