MATLAB: Plotting Values on specific x-y coordinates

plotting

I have X (181X361), Y(181X361), Values(181X361), I would like to plot the values on each X and Y with colors indicating the values in a 2D-plane. I do not know what to choose and how to implement, plot, colormap,….

Best Answer

I think you are asking for contour or contourf functions. Usage is simple;
contour(X,Y,Z)
or
contourf(X,Y,Z)