summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGard Spreemann <gspr@nonempty.org>2021-02-28 22:56:19 +0100
committerGard Spreemann <gspr@nonempty.org>2021-02-28 22:56:19 +0100
commit482c36c28b1feaf65a2f26b0ee9ad2f4ddfae86c (patch)
treec54d5d01895879a981a191c6cba4fab2a79a51ef
parentfddeb5724fe2e7f1f37476c5e3cfade992a4edec (diff)
More precise interpolation invariant documentation text
-rw-r--r--src/python/gudhi/representations/vector_methods.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/representations/vector_methods.py b/src/python/gudhi/representations/vector_methods.py
index 62a467c0..a82c0d3c 100644
--- a/src/python/gudhi/representations/vector_methods.py
+++ b/src/python/gudhi/representations/vector_methods.py
@@ -369,7 +369,7 @@ class BettiCurve2(BaseEstimator, TransformerMixin):
Examples
--------
- If pd is a persistence diagram and xs is a grid such that xs[0] >= pd.min(), then the result of
+ If pd is a persistence diagram and xs is a nonempty grid of finite values such that xs[0] >= pd.min(), then the result of
>>> bc = BettiCurve2(xs)
>>> result = bc(pd)
and