summaryrefslogtreecommitdiff
path: root/src/cython
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-10-02 08:23:51 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2018-10-02 08:23:51 +0000
commit2dde0fc4ea8f24173789a1ce9a9442cb02b96e86 (patch)
treec98d4c1624015c9eed5d7cc8edc15c2c0502a30b /src/cython
parentb4c51b3d92564e2e93e8fa4fe55f98cd06bba57a (diff)
Doc review : Explain that plot persistence density function doesn't handle degenerate data
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/plot_persistence_density_vincent@3920 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 7794f7959b98b0245e26077d2f2639f33655d5c9
Diffstat (limited to 'src/cython')
-rw-r--r--src/cython/cython/persistence_graphical_tools.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cython/cython/persistence_graphical_tools.py b/src/cython/cython/persistence_graphical_tools.py
index e63b350b..d7be936f 100644
--- a/src/cython/cython/persistence_graphical_tools.py
+++ b/src/cython/cython/persistence_graphical_tools.py
@@ -249,7 +249,8 @@ def plot_persistence_density(persistence=[], persistence_file='',
"""This function plots the persistence density from persistence
values list or from a :doc:`persistence file <fileformats>`. Be
aware that this function does not distinguish the dimension, it is
- up to you to select the required one.
+ up to you to select the required one. This function also does not handle
+ degenerate data set (scipy correlation matrix inversion can fail).
:param persistence: Persistence intervals values list grouped by dimension.
:type persistence: list of tuples(dimension, tuple(birth, death)).