def COM_variation(j, nbr_iter):
for i in range (j,nbr_iter):
xindex = np.argmax(np.sum(one_position[i],axis=0))
yindex = np.argmax(np.sum(one_position[i],axis=1))
reddot=np.zeros((512,512))
# Make a centred line in x and y intersection at COM
reddot[:,xindex] = 500000
reddot[yindex,:] = 500000
np.disp( xindex)
plt.figure()
noes = ['spring', 'autumn']
plt.imshow(np.log10(one_position[i]), cmap=noes[1] , interpolation = 'none')
plt.imshow(np.log10(reddot))
#plt.imshow(np.log10(one_position[1]), cmap = 'hot', interpolation = 'none')
#plt.colorbar() funkar ej med flera imshows
plt.title('Scan_nbr_%d'%(first_scan_nbr+i))
#COM_variation(0,3)
load_data_plot3Dpeak.py 文件源码
python
阅读 25
收藏 0
点赞 0
评论 0
评论列表
文章目录