필터 지우기
필터 지우기

plot subplots on one background image

조회 수: 2 (최근 30일)
Istvan
Istvan 2011년 10월 16일
Hello,
I am wondering how I can have a picture (.jpg) as the background of a figure and then plot several subplots on top of this picture (I would set postitio and axis off to see both the plots and the background).
The problem is, it is easy to have several pictures drawn, for each subplot, but that is not what I need --- it must be several subplots on well defined positions of one background picture.
Thanks for any suggestions!
Istvan

채택된 답변

Image Analyst
Image Analyst 2011년 10월 16일
  댓글 수: 2
Istvan
Istvan 2011년 10월 17일
yes, this solves all problems. One can use subplot() in combination with this and the axis below is protected. Thanks a lot!
Walter Roberson
Walter Roberson 2011년 10월 17일
No, the axis below is not protected using the code in that solution. If you read that solution carefully, it says to draw the subplots first and then to put in the background. It doesn't explain why.
If you subplot() a new plot in to place after drawing the background image using the solution, your background image will be deleted.
The solution is the same as what I described except that I spent more time on describing the reasons and less time on describing step-by-step.

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2011년 10월 16일
You cannot do this using subplot(). subplot() always removes any axes that is underneath the portion of the figure that is to be imaged in to.
If you were to create the subplots first and then to draw the image, and push the image "below" the subplots, then you would not run in to the above subplot behavior.
Be sure to set the 'color' property of each subplot axis to 'none'.

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by