Plotting Values on specific x-y coordinates

19 views (last 30 days)
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,....

Accepted Answer

Aquatris
Aquatris on 18 Jul 2018
Edited: Aquatris on 18 Jul 2018
I think you are asking for contour or contourf functions. Usage is simple;
contour(X,Y,Z)
or
contourf(X,Y,Z)

More Answers (1)

Afshin Aghayan
Afshin Aghayan on 8 Oct 2019
you can use this code for displaying any data in the form of [x, y, f(x,y)] or data with coordinate

Categories

Find more on Contour Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!