summaryrefslogtreecommitdiff
path: root/src/python/doc
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2020-06-04 09:52:47 +0200
committerGitHub <noreply@github.com>2020-06-04 09:52:47 +0200
commit26b93249f907305c70323ed2e5ac855fa91de9a3 (patch)
tree4b058ba4a2ca266930c12bd74a00669764718c5e /src/python/doc
parent0990208f63c4fdc142c64b8043395bf32bd34a15 (diff)
parent83db295e36db019172cdcf3a490c500a880c862f (diff)
Merge pull request #345 from VincentRouvreau/fix_sphinx_warning
Fix sphinx warning and link inside the rips sphinx doc
Diffstat (limited to 'src/python/doc')
-rw-r--r--src/python/doc/rips_complex_ref.rst4
-rw-r--r--src/python/doc/rips_complex_user.rst4
2 files changed, 1 insertions, 7 deletions
diff --git a/src/python/doc/rips_complex_ref.rst b/src/python/doc/rips_complex_ref.rst
index 2aa6b268..f0582d5c 100644
--- a/src/python/doc/rips_complex_ref.rst
+++ b/src/python/doc/rips_complex_ref.rst
@@ -13,8 +13,6 @@ Rips complex reference manual
.. automethod:: gudhi.RipsComplex.__init__
-.. _weighted-rips-complex-reference-manual:
-
======================================
Weighted Rips complex reference manual
======================================
@@ -26,8 +24,6 @@ Weighted Rips complex reference manual
.. automethod:: gudhi.weighted_rips_complex.WeightedRipsComplex.__init__
-.. _dtm-rips-complex-reference-manual:
-
=================================
DTM Rips complex reference manual
=================================
diff --git a/src/python/doc/rips_complex_user.rst b/src/python/doc/rips_complex_user.rst
index dd2f2cc0..6048cc4e 100644
--- a/src/python/doc/rips_complex_user.rst
+++ b/src/python/doc/rips_complex_user.rst
@@ -400,12 +400,10 @@ The output is:
[(0, (3.1622776601683795, inf)), (0, (3.1622776601683795, 5.39834563766817)), (0, (3.1622776601683795, 5.39834563766817))]
-.. _dtm-rips-complex:
-
DTM Rips Complex
----------------
-`DTMRipsComplex <rips_complex_ref.html#dtm-rips-complex-reference-manual>`_ builds a simplicial complex from a point set or a full distance matrix (in the form of ndarray), as described in the above example.
+:class:`~gudhi.dtm_rips_complex.DTMRipsComplex` builds a simplicial complex from a point set or a full distance matrix (in the form of ndarray), as described in the above example.
This class constructs a weighted Rips complex giving larger weights to outliers, which reduces their impact on the persistence diagram. See `this notebook <https://github.com/GUDHI/TDA-tutorial/blob/master/Tuto-GUDHI-DTM-filtrations.ipynb>`_ for some experiments.
.. testcode::