What to do if the second axis is not positioned well?

3 次查看(过去 30 天)
Hi,
I am trying to add second x and y axis on a plot to show different units and values. Below is the code but it sounds like it doesn't work properly as the second axes are not located properly (can be seen on attached jpg file ). I figured it out that the problem source is the first axis x and y labels as it works when I remove them. How can I fix the problem? Thanks
xlabel('()');
ylabel('Flow');
haxes1 = gca; % handle to axes
set(haxes1,'XColor','k','YColor','k')
haxes1_pos = get(haxes1,'Position'); % store position of first axes
haxes2 = axes('Position',haxes1_pos,...
'YLim',[y_min y_max],...
'XLim',[x_min x_max],...
'XAxisLocation','top',...
'YAxisLocation','right',...
'Color','none');
set(gca, 'YScale', 'log');
set(gca, 'XScale', 'log');
xlabel('d(mm)','VerticalAlignment','bottom');
ylabel('FLO','VerticalAlignment','cap');
print -djpeg -r300 chart.jpg
print -dpsc chart.eps
  4 个评论
dpb
dpb 2015-7-1
I don't see that...I ran your code and with the exception of the labels not matching ticks looked fine.
Very Determined
Very Determined 2015-7-2
编辑:Very Determined 2015-7-2
Have you looked at the jpg file? To me, the figure itself looks good but not the jpg version.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by