我正在使用Ndim = 30; t = 1.0; mu = 0.0; Delta = 0.3
u=2.2; g=1.0
filename = "datafile"
delta = read1col(filename)
delta_matrix = np.flipud(np.reshape(delta,(Ndim, Ndim)))
plt.imshow(delta_matrix, aspect='auto')
plt.colorbar()
plt.title(r"$\Delta$")
plt.gca().invert_yaxis()
plt.savefig('delta_Ndim%dt%.2fmu%.2fDelta%.2fu%.2fg%.2f.pdf'%(Ndim, t, mu, Delta, u, g))
plt.show()
plt.clf()
绘制矩阵,但非常奇怪的是,其中一个图表没有显示颜色条比例中的数字。
我的代码如下:
img.upload().then(() => {
let profile = new db.Profile();
profile.img = img.id
return profile.save();
});
奇怪的是,正确显示了图表的其他参数集。