The MATLAB code I wrote is:
FigHandle = figure; set(FigHandle, 'Position', [0, 0, 1060, 140]); load('velocity0.dat') v=reshape(velocity0,106,14) vt=transpose(v) pim=imagesc(vt) ; set(gca,'XTickLabel',{'1','2','3','4','5','6','7','8','9','10'}, 'FontSize',11) set(gca,'YTickLabel',{'0.15','0.35','0.55','0.75','0.95','1.15','1.35'}, 'FontSize',11) xlabel('distance(km)') ylabel('depth(km)') C = colorbar('location','EastOutside'); caxis([2928,5553]) set(get(C,'XLabel'),'String','velocity(m/s)', 'FontSize',11)
I am trying to finish my article for a scientific journal. Reviewers asked for new images. However, I have not worked with the code for more than a year, and I do not have MATLAB installed on my new job. So I asked my friend and got this picture below.

Previously, the image in the past looked like this:

Should I change the code to get the desired colors? Is this a color issue?