Creating a simple contour plot / Heat map
14 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Andrew Reibold
am 28 Aug. 2014
Bearbeitet: Andrew Reibold
am 28 Aug. 2014
I have edited this question to try to make it more clear:
As an example, I have the following arrays:
a =
1 2 3
1 2 3
b =
2 3 4
5 6 7
c =
3 4 5
6 7 8
contour(a,b,c) will give me something like this:

I want it to look like this though:

How can I fix this?
PS: Additional Confusion. On the first picture, why does the line go to put a value at (1.5,2.5)? I didnt list an (a,b) of those values together..
2 Kommentare
Akzeptierte Antwort
Kelly Kearney
am 28 Aug. 2014
Bearbeitet: Kelly Kearney
am 28 Aug. 2014
pcolor(a,b,c);
shading interp;
colorbar;
The contour function plots contour lines, i.e. lines of constant value. Your function is constant across the horizontal, hence the horizontal contour lines. The contourf function would get you a bit closer to what you want, in that it shades between contour lines. But pcolor is best for showing interpolated values between your data points.
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Contour Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!