File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -313,8 +313,8 @@ def aamp_match(
313313 -------
314314 out : numpy.ndarray
315315 The first column consists of distances of subsequences of `T` whose distances
316- to `Q` are smaller than `max_distance`, sorted by distance (lowest to highest).
317- The second column consists of the corresponding indices in `T`.
316+ to `Q` are less than or equal to `max_distance`, sorted by distance (lowest to
317+ highest). The second column consists of the corresponding indices in `T`.
318318 """
319319 if len (Q .shape ) == 1 :
320320 Q = Q [np .newaxis , :]
Original file line number Diff line number Diff line change @@ -353,8 +353,8 @@ def match(
353353 -------
354354 out : numpy.ndarray
355355 The first column consists of distances of subsequences of `T` whose distances
356- to `Q` are smaller than `max_distance`, sorted by distance (lowest to highest).
357- The second column consists of the corresponding indices in `T`.
356+ to `Q` are less than or equal to `max_distance`, sorted by distance (lowest to
357+ highest). The second column consists of the corresponding indices in `T`.
358358
359359 See Also
360360 --------
You can’t perform that action at this time.
0 commit comments