summaryrefslogtreecommitdiff
path: root/src/cython/doc/persistence_graphical_tools_user.rst
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/persistence_graphical_tools_user.rst
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/persistence_graphical_tools_user.rst')
-rw-r--r--src/cython/doc/persistence_graphical_tools_user.rst8
1 files changed, 4 insertions, 4 deletions
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)