summaryrefslogtreecommitdiff
path: root/src/python/example/tangential_complex_plain_homology_from_off_file_example.py
diff options
context:
space:
mode:
authortlacombe <lacombe1993@gmail.com>2019-12-16 17:19:44 +0100
committertlacombe <lacombe1993@gmail.com>2019-12-16 17:19:44 +0100
commitefebda596ae5a03dd0f15317ebfe74b5f19c78aa (patch)
treec21581669c5dcc985bed33fd043c0999f4e20e7d /src/python/example/tangential_complex_plain_homology_from_off_file_example.py
parentaba9ad68394b0c5aae22c450cac7162733132002 (diff)
parent3f1601665cbd0b7397c9c19f55d608246192207b (diff)
Merge branch 'master' into wbary-theo
updating master in wbary-theo
Diffstat (limited to 'src/python/example/tangential_complex_plain_homology_from_off_file_example.py')
-rwxr-xr-xsrc/python/example/tangential_complex_plain_homology_from_off_file_example.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/python/example/tangential_complex_plain_homology_from_off_file_example.py b/src/python/example/tangential_complex_plain_homology_from_off_file_example.py
index 456bc9eb..f0df2189 100755
--- a/src/python/example/tangential_complex_plain_homology_from_off_file_example.py
+++ b/src/python/example/tangential_complex_plain_homology_from_off_file_example.py
@@ -1,7 +1,8 @@
#!/usr/bin/env python
-import gudhi
import argparse
+import matplotlib.pyplot as plot
+import gudhi
""" This file is part of the Gudhi Library - https://gudhi.inria.fr/ - which is released under MIT.
See file LICENSE or go to https://gudhi.inria.fr/licensing/ for full license details.
@@ -56,8 +57,8 @@ with open(args.file, "r") as f:
print(st.betti_numbers())
if args.no_diagram == False:
- pplot = gudhi.plot_persistence_diagram(diag, band=args.band)
- pplot.show()
+ gudhi.plot_persistence_diagram(diag, band=args.band)
+ plot.show()
else:
print(args.file, "is not a valid OFF file")