What to do if the second axis is not positioned well?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
dpb
el 1 de Jul. de 2015
I don't see that...I ran your code and with the exception of the labels not matching ticks looked fine.
Respuestas (0)
Ver también
Categorías
Más información sobre Axis Labels en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!