summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryuichi-ike <yuichi.ike.1990@gmail.com>2020-05-14 17:56:10 +0900
committeryuichi-ike <yuichi.ike.1990@gmail.com>2020-05-14 17:56:10 +0900
commit4d27d32308f94e63d76bbd5564b8837b94b24339 (patch)
tree778dfd16fb3c2dc62a2a84afb7a17bd953b5329e
parentfd7112b7e665d495543d9647f675a14f75061bbf (diff)
document modified
-rw-r--r--src/python/doc/rips_complex_ref.rst2
-rw-r--r--src/python/doc/rips_complex_user.rst5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/python/doc/rips_complex_ref.rst b/src/python/doc/rips_complex_ref.rst
index 9ae3c49c..5f3e46c1 100644
--- a/src/python/doc/rips_complex_ref.rst
+++ b/src/python/doc/rips_complex_ref.rst
@@ -13,6 +13,8 @@ Rips complex reference manual
.. automethod:: gudhi.RipsComplex.__init__
+.. _weighted-rips-complex-reference-manual:
+
======================================
Weighted Rips complex reference manual
======================================
diff --git a/src/python/doc/rips_complex_user.rst b/src/python/doc/rips_complex_user.rst
index adb002a8..819568be 100644
--- a/src/python/doc/rips_complex_user.rst
+++ b/src/python/doc/rips_complex_user.rst
@@ -351,6 +351,9 @@ until dimension 1 - one skeleton graph in other words), the output is:
Weighted Rips Complex
---------------------
+`WeightedRipsComplex <rips_complex_ref.html#weighted-rips-complex-reference-manual>`_ builds a simplicial complex from a distance matrix and weights on vertices.
+
+
Example from a distance matrix and weights
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -372,7 +375,7 @@ The output is:
[([0], 2.0), ([1], 200.0), ([0, 1], 200.0)]
Example from a point cloud combined with DistanceToMeasure
-----------------------------------------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Combining with DistanceToMeasure, one can compute the DTM-filtration of a point set, as in `this notebook <https://github.com/GUDHI/TDA-tutorial/blob/master/Tuto-GUDHI-DTM-filtrations.ipynb>`_.