Für Vorlesungen, bitte die Webseite verwenden. https://flavigny.de/lecture
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
177B

  1. import numpy as np
  2. import matplotlib.pyplot as plt
  3. data = np.genfromtxt('out', delimiter=",")
  4. plt.imshow(data, interpolation='nearest', cmap='viridis')
  5. plt.savefig('out.pdf')