summaryrefslogtreecommitdiff
path: root/src/cython/doc/pyplots/diagram_persistence.py
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-08-09 10:44:44 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2017-08-09 10:44:44 +0000
commit947d6f3b5bf90689e0d1ba6a4d566bab0730b5a9 (patch)
tree3e37ed2dc5acd8d42b6a15bf4aba8cfe9bfeaae8 /src/cython/doc/pyplots/diagram_persistence.py
parent295d60787357806ae9aac1bfab98f3fefcd759a0 (diff)
parent1129608c2add6f15538b3e281d75119f0e1bc8b0 (diff)
Merge last trunk modifications
persistence file reader Python interface persistence_graphical_tools improvement (max_plots and max_barcodes, and from a persistence file) git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/persistence_diagram_improvement@2604 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: db80333d4f34151be0c32024af597d90d221a97f
Diffstat (limited to 'src/cython/doc/pyplots/diagram_persistence.py')
-rwxr-xr-xsrc/cython/doc/pyplots/diagram_persistence.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cython/doc/pyplots/diagram_persistence.py b/src/cython/doc/pyplots/diagram_persistence.py
index 56d6c50f..30661965 100755
--- a/src/cython/doc/pyplots/diagram_persistence.py
+++ b/src/cython/doc/pyplots/diagram_persistence.py
@@ -3,5 +3,5 @@ import gudhi
rips_complex = gudhi.RipsComplex(off_file='tore3D_1307.off', max_edge_length=0.2)
simplex_tree = rips_complex.create_simplex_tree(max_dimension=3)
diag = simplex_tree.persistence()
-pplot = gudhi.plot_persistence_diagram(diag, band_boot=0.13)
-pplot.show()
+plt = gudhi.plot_persistence_diagram(diag, band_boot=0.13)
+plt.show()