summaryrefslogtreecommitdiff
path: root/src/cython/doc
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-22 21:19:15 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-03-22 21:19:15 +0000
commit0724c2bcab0fa444ecf8178c27f59ca788a0aa03 (patch)
tree2bf019d6ebbe01a139d3ad7e06dbee295b531fb4 /src/cython/doc
parent3ffe80a4d17b59422dab18b0898e3f9ca4131672 (diff)
Rename plot_persistence_diagram and barcode
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@2220 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 66a06ffdc62d5284119df80c3f104a48568cd241
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 3d7e4fc7..27c2f68a 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.plot_barcode_persistence
-.. autofunction:: gudhi.plot_diagram_persistence
+.. autofunction:: gudhi.plot_persistence_barcode
+.. autofunction:: gudhi.plot_persistence_diagram
diff --git a/src/cython/doc/persistence_graphical_tools_user.rst b/src/cython/doc/persistence_graphical_tools_user.rst
index 2644aa11..f713e971 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.plot_barcode_persistence(diag)
+ gudhi.plot_persistence_barcode(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.plot_barcode_persistence(diag)
+ gudhi.plot_persistence_barcode(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.plot_diagram_persistence(diag)
+ gudhi.plot_persistence_diagram(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.plot_diagram_persistence(diag)
+ gudhi.plot_persistence_diagram(diag)
diff --git a/src/cython/doc/pyplots/barcode_persistence.py b/src/cython/doc/pyplots/barcode_persistence.py
index 9fcb33d0..c06ac5a7 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.plot_barcode_persistence(diag)
+gudhi.plot_persistence_barcode(diag)
diff --git a/src/cython/doc/pyplots/diagram_persistence.py b/src/cython/doc/pyplots/diagram_persistence.py
index fbb6e60b..b4714fe3 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.plot_diagram_persistence(diag)
+gudhi.plot_persistence_diagram(diag)