Skip to content

Commit

Permalink
Added minor note on missing mmatch function
Browse files Browse the repository at this point in the history
  • Loading branch information
seanlaw committed Nov 3, 2024
1 parent 3cb836b commit 3b28371
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ Have A Question?
stumpy.motifs
stumpy.match
stumpy.mmotifs
stumpy.mmatch
stumpy.mmatch
stumpy.snippets
stumpy.stimp
stumpy.stimped
Expand Down Expand Up @@ -152,6 +154,11 @@ mmotifs

.. autofunction:: stumpy.mmotifs

mmatch
======

This function does not exist. See the :func:`stumpy.match` function, which natively supports multi-dimensional time series inputs.

snippets
========

Expand Down
4 changes: 2 additions & 2 deletions stumpy/motifs.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,13 +414,13 @@ def match(
Find all matches of a query ``Q`` in a time series ``T``
The indices of subsequences whose distances to ``Q`` are less than or equal to
``max_distance``, sorted by distance (lowest to highest). Around each occurrence an
``max_distance``, sorted by distance (lowest to highest). Around each occurrence, an
exclusion zone is applied before searching for the next.
Parameters
----------
Q : numpy.ndarray
The query sequence. It doesn't have to be a subsequence of ``T``.
The query sequence. ``Q`` does not have to be a subsequence of ``T``.
T : numpy.ndarray
The time series of interest.
Expand Down

0 comments on commit 3b28371

Please sign in to comment.