This how i want the plot to be

1 view (last 30 days)
idowu Abdul-Semiu
idowu Abdul-Semiu on 6 Sep 2019
Answered: the cyclist on 6 Sep 2019
plom.png
  1 Comment
Walter Roberson
Walter Roberson on 6 Sep 2019
It is not clear what your question is?
I note that you tagged with "3d plot", but that looks like a 2D plot.

Sign in to comment.

Answers (3)

Bjorn Gustavsson
Bjorn Gustavsson on 6 Sep 2019
pcolor(x,y,I),shading flat,xlabel('x-text'),ylabel('y-text'),colorbar
HTH

Robert U
Robert U on 6 Sep 2019
Hi idowu Abdul-Semiu,
There are several plot-commands that support the image you are showing. Have a look for the following commands:
You would have to adjust the display options of the plot-commands, e.g. remove the contour lines in contourf() and change the colormap.
Read and try. If you have troubles to adjust the plot, provide the grid and/or data matrices and post the code you have tried so far.
Kind regards,
Robert

the cyclist
the cyclist on 6 Sep 2019
Since you have spread similar questions across several places, without good organization (and one of them was closed), I'll post here.
For the code I helped you with, that produced X,Y,Z, the following will produce a contour plot of the style above:
figure; contour(X,Y,Z,'fill','on')
colorbar
test.png
For comparison, the following is the mesh version, so this "boring" plot is expected.
test.png

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!