(1)设定双Y坐标 x=0:0.1:2*pi; y1=sin(x); y2=cos(x); y3=1-sin(x); [AX]=plotyy(x,y1,x,y2); %双Y坐标的建立 hold on; plot(x,y3); %左侧坐标再叠加波形 set(get(gca,'xlabel'),'string','X-axis'); set(get(AX(1),'Ylabel'),'string','left Y-axis'); set(get(AX(2),'Ylabel'),'string','r