File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ Have A Question?
34
34
stumpy.motifs
35
35
stumpy.match
36
36
stumpy.mmotifs
37
+ stumpy.mmatch
38
+ stumpy.mmatch
37
39
stumpy.snippets
38
40
stumpy.stimp
39
41
stumpy.stimped
@@ -152,6 +154,11 @@ mmotifs
152
154
153
155
.. autofunction :: stumpy.mmotifs
154
156
157
+ mmatch
158
+ ======
159
+
160
+ This function does not exist. See the :func: `stumpy.match ` function, which natively supports multi-dimensional time series inputs.
161
+
155
162
snippets
156
163
========
157
164
Original file line number Diff line number Diff line change @@ -414,13 +414,13 @@ def match(
414
414
Find all matches of a query ``Q`` in a time series ``T``
415
415
416
416
The indices of subsequences whose distances to ``Q`` are less than or equal to
417
- ``max_distance``, sorted by distance (lowest to highest). Around each occurrence an
417
+ ``max_distance``, sorted by distance (lowest to highest). Around each occurrence, an
418
418
exclusion zone is applied before searching for the next.
419
419
420
420
Parameters
421
421
----------
422
422
Q : numpy.ndarray
423
- The query sequence. It doesn't have to be a subsequence of ``T``.
423
+ The query sequence. ``Q`` does not have to be a subsequence of ``T``.
424
424
425
425
T : numpy.ndarray
426
426
The time series of interest.
You can’t perform that action at this time.
0 commit comments