MATLAB Graph 双轴图

n=1:10;
I=[0.57 1.89 3.82 6.73 3.74 15.16 21.32 27.47 15.91 3.38];
P0=[9000 12500 12500 16500 14000 28000 33500 57500 50000 32500];
plotyy(n,I,n,P0);
[AX,H1,H2] =plotyy(n,I,n,P0,@plot);%获取坐标轴、图像句柄
set(get(AX(1),'ylabel'),'string', 'I','fontsize',16);
set(get(AX(2),'ylabel'),'string', 'P0','fontsize',16);
xlabel('n','fontsize',16);

 

你可能感兴趣的:(MATLAB)