1
私のコード私のimshowプロットでxticksとyticksを設定するには?
import numpy as np
import matplotlib.pyplot as plt
with open('nm.dat','r') as f:
vst = map(float, f)
print vst
a=np.asarray(vst)
print len(a)
a11=a.reshape(4,22)
plt.imshow(a11, cmap='hot', interpolation='nearest')
plt.colorbar()
plt.show()
私は0,8,16,24,32,40,48,56,64,72私のx軸が等間隔でマークされたいです、 y軸は0,2,4,6,8です。 これを解決するには?