我試圖在使用pylab的subplot()函數進行排列的一些簡單線圖上繪製圖像。但是,當我調用imshow時,似乎會改變子圖的邊界,即使使用set_position函數,我也無法更改這些邊界。當覆蓋圖像時,pylab子圖邊界發生了變化
基本上,我想頂部的subplot與this image的底部寬度相同。
我試過關閉自動縮放按照this post和我沒有區別。
這裏是我的源:
import pylab as pl
#Plotting results
F=pl.figure()
#First plot the unzoomed plot
ax1=pl.subplot(211)
ax2=pl.subplot(212)
#Not relevant to problem... ax1.plot() & ax2.plot() commands
for bl in range(len(bondLengths)):
ls=styles[bl]
lw=widths[bl]
for cf in range(len(chgcarfiles)):
c=colors[cf]
avgi=avgIBLs[cf][bl]
L=len(avgi)
ax1.plot([bondLengths[bl]*(x+0.5)/L for x in range(-1,L/2,1)],avgi[len(avgi)/2-1:],c=c,ls=ls,lw=lw)
ax2.plot([bondLengths[bl]*(x+0.5)/L for x in range(-1,L/2,1)],avgi[len(avgi)/2-1:],c=c,ls=ls,lw=lw)
ax1.set_xlim([0,2.5])
ax1.set_ylim([0.5,4.9])
ax2.set_xlim([0,1.2])
ax2.set_ylim([0.88,0.96])
#Load up & insert an image
slice=pl.loadtxt("somedata1")
ax1.autoscale(False)
ax1.imshow(slice,extent=[0.05,0.75,3.4,4.1])
pl.figtext(0.45,0.03,r"Distance ($\AA$)")
pl.figtext(0.05,0.65,r"Partial Charge Density ($\rho/rho_{avg}$)",rotation='vertical')
pl.show()
當然它的長寬比 I認爲這是我沒有檢查的財產。它總是你想到的最後一個。謝謝您的幫助。 –
2012-04-24 02:32:22