import numpy as np import matplotlib.pyplot as plt Hv = np.load("results/Hv_analytisch.npy").reshape((16,1)) Hv_BOF = np.load("results/Hv_BOF_n1.npy").reshape((16,1)) Hv_nested_tapes = np.load("results/Hv_nested_tapes_n1.npy").reshape((16,1)) fig, (ax1, ax2, ax3) = plt.subplots(1,3, sharey=True, figsize= (5,5)) fig.suptitle("") ax1.imshow(Hv) ax2.imshow(Hv_BOF) ax3.imshow(Hv_nested_tapes) #fig.colorbar() plt.show()