Alternative to contour plot: pixel plot?

조회 수: 36 (최근 30일)
Jonathan
Jonathan 2015년 1월 5일
편집: Jiri Mateju 2015년 7월 19일
Hi There,
I'm plotting out some latitude vs. (pressure) altitude data with a gridded resolution of .25 deg latitude by 20 millibar of (pressure) altitude, and with a scalar value that is represented as color. Until now, I've been using contourf to do this, and it works reasonably well. However, for publication purposes, I'd really prefer to plot each grid point as a "pixel" to clean the figure up a bit. This should be reasonably simple, since it's basically just using "plot" with a color axis, but that requires getting the pixel size juuuust right so that each pixel doesn't overlap the next, and problematically each pixel is not perfectly square. Is there a plot function that automates this so that the size of the rectangular pixel is a function of the distance to the next point (in both x and y), so that it looks clean without overlapping?
I'm attaching an figure from a colleague's R script that does this reasonably well to give you a sense for what I'm trying to achieve. Please ignore the gray lines in the plot--they represent something unrelated to this problem.
If such a function doesn't exist, any other suggestions on how to make this work using a basic function like plot?
Thanks!

채택된 답변

Doug Hull
Doug Hull 2015년 1월 5일
This looks like it can be done with the command "Image"
  댓글 수: 2
Jonathan
Jonathan 2015년 1월 5일
Thanks, Doug! This was a good call. I should mention, in case anyone else has a similar question, and comes across this post, that "imagesc" is equally or more helpful because it scales the color axis to the values you define (at least that's my understanding). I do have a problem with both image and imagesc that I'll post in another thread since this response answered the original question. Thanks.
Image Analyst
Image Analyst 2015년 1월 5일
You can also use imshow() - it's now available in base MATLAB. Don't use pcolor() though.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Jiri Mateju
Jiri Mateju 2015년 7월 19일
편집: Jiri Mateju 2015년 7월 19일
I had a similar problem and solved it with patch (attached).

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by