summaryrefslogtreecommitdiff
path: root/src/cython/doc
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-20 15:48:04 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-20 15:48:04 +0000
commit30374ed5154610dc63198742220153aa9387139c (patch)
treeab63bfb8e84f650a617bd548c57911410856ebf3 /src/cython/doc
parent10411aae9845d28d36a9d4394bd668ed84d540f1 (diff)
Rename barcode_persistence and diagram_persistence functions
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@2204 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: f91e283fa6b6b02198ae28a44f41bd761c1c1f48
Diffstat (limited to 'src/cython/doc')
-rw-r--r--src/cython/doc/persistence_graphical_tools_ref.rst4
-rw-r--r--src/cython/doc/persistence_graphical_tools_user.rst8
-rwxr-xr-xsrc/cython/doc/pyplots/barcode_persistence.py2
-rwxr-xr-xsrc/cython/doc/pyplots/diagram_persistence.py2
4 files changed, 8 insertions, 8 deletions
diff --git a/src/cython/doc/persistence_graphical_tools_ref.rst b/src/cython/doc/persistence_graphical_tools_ref.rst
index a12021c4..3d7e4fc7 100644
--- a/src/cython/doc/persistence_graphical_tools_ref.rst
+++ b/src/cython/doc/persistence_graphical_tools_ref.rst
@@ -4,5 +4,5 @@ Persistence graphical tools reference manual
.. autofunction:: gudhi.__min_birth_max_death
.. autofunction:: gudhi.show_palette_values
-.. autofunction:: gudhi.barcode_persistence
-.. autofunction:: gudhi.diagram_persistence
+.. autofunction:: gudhi.plot_barcode_persistence
+.. autofunction:: gudhi.plot_diagram_persistence
diff --git a/src/cython/doc/persistence_graphical_tools_user.rst b/src/cython/doc/persistence_graphical_tools_user.rst
index 1a5195c5..2644aa11 100644
--- a/src/cython/doc/persistence_graphical_tools_user.rst
+++ b/src/cython/doc/persistence_graphical_tools_user.rst
@@ -33,7 +33,7 @@ This function can display the persistence result as a barcode:
periodic_cc = gudhi.PeriodicCubicalComplex(perseus_file='3d_torus.txt')
diag = periodic_cc.persistence()
- gudhi.barcode_persistence(diag)
+ gudhi.plot_barcode_persistence(diag)
.. plot::
@@ -41,7 +41,7 @@ This function can display the persistence result as a barcode:
periodic_cc = gudhi.PeriodicCubicalComplex(perseus_file='3d_torus.txt')
diag = periodic_cc.persistence()
- gudhi.barcode_persistence(diag)
+ gudhi.plot_barcode_persistence(diag)
Show persistence as a diagram
-----------------------------
@@ -55,7 +55,7 @@ This function can display the persistence result as a diagram:
rips_complex = gudhi.RipsComplex(off_file='tore3D_300.off', max_edge_length=2.0)
simplex_tree = rips_complex.create_simplex_tree(max_dimension=3)
diag = simplex_tree.persistence()
- gudhi.diagram_persistence(diag)
+ gudhi.plot_diagram_persistence(diag)
.. plot::
@@ -64,4 +64,4 @@ This function can display the persistence result as a diagram:
rips_complex = gudhi.RipsComplex(off_file='tore3D_300.off', max_edge_length=2.0)
simplex_tree = rips_complex.create_simplex_tree(max_dimension=3)
diag = simplex_tree.persistence()
- gudhi.diagram_persistence(diag)
+ gudhi.plot_diagram_persistence(diag)
diff --git a/src/cython/doc/pyplots/barcode_persistence.py b/src/cython/doc/pyplots/barcode_persistence.py
index 95bbd343..9fcb33d0 100755
--- a/src/cython/doc/pyplots/barcode_persistence.py
+++ b/src/cython/doc/pyplots/barcode_persistence.py
@@ -2,4 +2,4 @@ import gudhi
periodic_cc = gudhi.PeriodicCubicalComplex(perseus_file='../3d_torus.txt')
diag = periodic_cc.persistence()
-gudhi.barcode_persistence(diag)
+gudhi.plot_barcode_persistence(diag)
diff --git a/src/cython/doc/pyplots/diagram_persistence.py b/src/cython/doc/pyplots/diagram_persistence.py
index b006b0bf..fbb6e60b 100755
--- a/src/cython/doc/pyplots/diagram_persistence.py
+++ b/src/cython/doc/pyplots/diagram_persistence.py
@@ -2,4 +2,4 @@ import gudhi
alpha_complex = gudhi.AlphaComplex(off_file='../tore3D_300.off')
diag = alpha_complex.persistence()
-gudhi.diagram_persistence(diag)
+gudhi.plot_diagram_persistence(diag)