summaryrefslogtreecommitdiff
path: root/cython/doc/bottleneck_distance_user.rst
diff options
context:
space:
mode:
authorGard Spreemann <gspr@nonempty.org>2019-09-25 14:29:41 +0200
committerGard Spreemann <gspr@nonempty.org>2019-09-25 14:29:41 +0200
commit599d68cd916f533bdb66dd9e684dd5703233b6bb (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /cython/doc/bottleneck_distance_user.rst
parenta2e642954ae39025e041471d486ecbac25dff440 (diff)
Delete all files in order to incorporate upstream's move to git.
Diffstat (limited to 'cython/doc/bottleneck_distance_user.rst')
-rw-r--r--cython/doc/bottleneck_distance_user.rst40
1 files changed, 0 insertions, 40 deletions
diff --git a/cython/doc/bottleneck_distance_user.rst b/cython/doc/bottleneck_distance_user.rst
deleted file mode 100644
index 605db022..00000000
--- a/cython/doc/bottleneck_distance_user.rst
+++ /dev/null
@@ -1,40 +0,0 @@
-:orphan:
-
-.. To get rid of WARNING: document isn't included in any toctree
-
-Bottleneck distance user manual
-===============================
-Definition
-----------
-
-.. include:: bottleneck_distance_sum.inc
-
-Function
---------
-.. autofunction:: gudhi.bottleneck_distance
-
-
-Basic example
--------------
-
-This example computes the bottleneck distance from 2 persistence diagrams:
-
-.. testcode::
-
- import gudhi
-
- diag1 = [[2.7, 3.7],[9.6, 14.],[34.2, 34.974], [3.,float('Inf')]]
- diag2 = [[2.8, 4.45],[9.5, 14.1],[3.2,float('Inf')]]
-
- message = "Bottleneck distance approximation=" + '%.2f' % gudhi.bottleneck_distance(diag1, diag2, 0.1)
- print(message)
-
- message = "Bottleneck distance value=" + '%.2f' % gudhi.bottleneck_distance(diag1, diag2)
- print(message)
-
-The output is:
-
-.. testoutput::
-
- Bottleneck distance approximation=0.81
- Bottleneck distance value=0.75