The graphs look like an isometric projection, which is not very convenient for assessing what happens along the delay axis. For comparison, "by eye" it would be good if the delay axis is parallel to the monitor plane, and accum periods are perpendicular. How to register in the code the angle at which the graphs are displayed?
x = np.arange (0, 64, 1) y = np.arange (0, aver, 1) xgrid, ygrid = np.meshgrid(x, y) zgrid = ifft_data x, y, z = xgrid,ygrid,zgrid fig = pylab.figure() axes = Axes3D(fig) axes.plot_surface(x, y, z) plt.xlabel('delay') plt.ylabel('accumulation periods') pylab.show() 

