Plot data above current axis

조회 수: 1 (최근 30일)
Anas Khan
Anas Khan 2022년 12월 1일
댓글: Anas Khan 2022년 12월 2일
I have a pseudocolor (contourf) plot that I want to add to in the margins around the plot. How do I place the plot the new data (just some lines) in the location shown in the circleed area in picture attached?

채택된 답변

Walter Roberson
Walter Roberson 2022년 12월 2일
There are several possible ways to proceed:
  • Create two different axes() specifying Position for each one, possibly using 'Units', 'normalized'. Use the same width and same xlim() for both of them -- consider using linkaxes . If you use this option, you can use whatever y coordinate range is easiest for each axes; OR
  • use subplot or tiledlayout to create subplots. It is easier to control spacing with tiledlayout -- but you still might not be able to get them as close as you would like. If you use this option, you can use whatever y coordiante range is easiest for each axes; OR
  • image() and imagesc() and pcolor() and contourf() by default use the matrix sizes to establish coordinates. You can take the y coordinates of the additional plot and scale them to have range proportionate to the array sizes, and then add the coordinate of the top of the array to all of the y values and then plot using that -- effectively using the same axes but positioning the data above the color area. This has the advantage of only using one axes, but has the disadvantage that axes labels and datatips will not match the actual y range unless you do a bunch of playing around.
  • you could use yyaxis left and yyaxis right, but in order to position the other plot above the color area you need to do a bunch of playing with coordinate scales and ylim
  댓글 수: 3
Walter Roberson
Walter Roberson 2022년 12월 2일
img = imread('cameraman.tif');
numrow = size(img,1);
marginy = numrow + double(max(img,[],1))/15;
ax = gca;
contourf(ax, img);
hold(ax, 'on');
plot(ax, marginy, 'r-');
hold(ax, 'off');
ylim(ax, [0 numrow]);
ax.Clipping = false;
Anas Khan
Anas Khan 2022년 12월 2일
Thanks!

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by