This commit is contained in:
2020-06-26 20:19:29 +02:00
parent 333cd04e58
commit 0c6d5e130e
8 changed files with 499 additions and 0 deletions
@@ -0,0 +1,7 @@
import numpy as np
import matplotlib.pyplot as plt
data = np.genfromtxt('out', delimiter=",")
plt.imshow(data, interpolation='nearest', cmap='viridis')
plt.savefig('out.pdf')