summaryrefslogtreecommitdiff
path: root/src/python/example/diagram_vectorizations_distances_kernels.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/python/example/diagram_vectorizations_distances_kernels.py')
-rwxr-xr-xsrc/python/example/diagram_vectorizations_distances_kernels.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/python/example/diagram_vectorizations_distances_kernels.py b/src/python/example/diagram_vectorizations_distances_kernels.py
index f777984c..0ea4ba79 100755
--- a/src/python/example/diagram_vectorizations_distances_kernels.py
+++ b/src/python/example/diagram_vectorizations_distances_kernels.py
@@ -26,9 +26,9 @@ plt.show()
LS = Landscape(resolution=1000)
L = LS.fit_transform(diags)
-plt.plot(L[0][:999])
-plt.plot(L[0][999:2*999])
-plt.plot(L[0][2*999:3*999])
+plt.plot(L[0][:998])
+plt.plot(L[0][998:2*998])
+plt.plot(L[0][2*998:3*998])
plt.title("Landscape")
plt.show()