summaryrefslogtreecommitdiff
path: root/src/python/example/rips_complex_diagram_persistence_from_distance_matrix_file_example.py
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-11-04 07:58:01 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-11-04 07:58:01 +0100
commit92361d9a117a33e0d922417cfbb2e1653f2537df (patch)
treeb64288cc20c0ce221e14f1dd9d0111bab759a5e9 /src/python/example/rips_complex_diagram_persistence_from_distance_matrix_file_example.py
parent1d471d3914045b9df7d0f48cee4c140dcf2a7b52 (diff)
import matplotlib only when necessary in examples, in function of args. Tests are without matplotlib, so no need to test if present
Diffstat (limited to 'src/python/example/rips_complex_diagram_persistence_from_distance_matrix_file_example.py')
-rwxr-xr-xsrc/python/example/rips_complex_diagram_persistence_from_distance_matrix_file_example.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/example/rips_complex_diagram_persistence_from_distance_matrix_file_example.py b/src/python/example/rips_complex_diagram_persistence_from_distance_matrix_file_example.py
index 79ccca96..236d085d 100755
--- a/src/python/example/rips_complex_diagram_persistence_from_distance_matrix_file_example.py
+++ b/src/python/example/rips_complex_diagram_persistence_from_distance_matrix_file_example.py
@@ -1,7 +1,6 @@
#!/usr/bin/env python
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.
@@ -60,5 +59,6 @@ print("betti_numbers()=")
print(simplex_tree.betti_numbers())
if args.no_diagram == False:
+ import matplotlib.pyplot as plot
gudhi.plot_persistence_diagram(diag, band=args.band)
plot.show()