The tick labels are string values. You can manually set them however you want:
set(gca,'XTickLabel',{'0.0000';'0.0016';'0.0032'})
If you want full automation, use 'get' to read in the current values, 'sprintf' to set the numerical format, and 'set' to update.
CV