필터 지우기
필터 지우기

How to plot two graphs with different x axes on the same graph without using tiled layout?

조회 수: 4 (최근 30일)
I am trying to overlay two sets of data, one with pixels as x axis and the other wavenumbers. I have tried the tiled layout and they work beautifully in MatLab, however, when exporting these graphs as images only one of the plots is exported/copied. Is there another way of achieving this? Thank you!
Above: Figure as seen in MatLab
Below: Figure exported
  댓글 수: 1
Rik
Rik 2024년 5월 10일
Have you tried creating two axes objects in the same place? It takes some careful tweaking to make sure no parts overlap, but it tends to export as expected.

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

채택된 답변

Cris LaPierre
Cris LaPierre 2024년 5월 10일
The plot created by the following example appears to export correctly
x1 = 0:0.1:40;
y1 = 4.*cos(x1)./(x1+2);
x2 = 1:0.2:20;
y2 = x2.^2./x2.^3;
t = tiledlayout(1,1);
ax1 = axes(t);
plot(ax1,x1,y1,'-r')
ax1.XColor = 'r';
ax1.YColor = 'r';
ax2 = axes(t);
plot(ax2,x2,y2,'-k')
ax2.XAxisLocation = 'top';
ax2.YAxisLocation = 'right';
ax2.Color = 'none';
ax1.Box = 'off';
ax2.Box = 'off';
% Export the plot
exportgraphics(gcf,'multipleAxes.png')
Here is the image that gets exported

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by