Contourf colour doesn't display correct values.

18 views (last 30 days)
I have a contourf plot shown below, the problem I'm having is that the ring is supposed to be almost white; the values in the matrix I'm plotting are all between 50 and 60. Where as the current corresponding colour is seemingly between -50 and -60. I've plotted it using the following code:
contourf(x_axis, y_axis,P_INDEX)
colormap(hot)
colorbar
caxis([-60 60])
I've also tried plotting it using abs(P_INDEX) but it gives the same output. Does anyone know what the issue could be?

Accepted Answer

ANKUR KUMAR
ANKUR KUMAR on 1 Jan 2018
I have tried to plot the similar contour using your program and I am getting the correct contour.
P=randi(60,20,30);
P(P<50)=52;
contourf(P)
colormap(hot)
colorbar
caxis([-60 60])
I think, there might be some mistake in P_INDEX values. I request you to cross check (manually) the P_INDEX values. This could be the error..
If your problem is not resolved yet, then please attach the .mat file which contains P_INDEX, y_axis and x_axis.
  6 Comments
ANKUR KUMAR
ANKUR KUMAR on 1 Jan 2018
Plot this one and see the graph.
contourf(P_INDEX(150:155,280:300))
mathman
mathman on 1 Jan 2018
Oh I see what you mean. Thanks for the help.

Sign in to comment.

More Answers (0)

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!