【发布时间】:2020-09-19 13:05:17
【问题描述】:
如何从这个多轴图中删除右侧 y 轴的值? Code source.
figure
x1 = Pmax;
y1 = FuelCons;
line(x1,y1,'Color','r')
ax1 = gca; % current axes
ax1_pos = ax1.Position; % position of first axes
ax2 = axes('Position',ax1_pos,...
'XAxisLocation','top',...
'YAxisLocation','right',...
'Color','none');
x2 = Cdrag;
y2 = FuelCons;
line(x2,y2,'Parent',ax2,'Color','k')
【问题讨论】:
标签: matlab matlab-figure axes multiple-axes