matlab画双轴图时,如何添加左右两个纵轴的ylabel
展开全部
用 plotyy 函数。如下例:
figure
x = 0:0.01:20;
y1 = 200*exp(-0.05*x).*sin(x);
y2 = 0.8*exp(-0.5*x).*sin(10*x);
[AX,H1,H2] = plotyy(x,y1,x,y2,'plot');
详情请在网上搜 Matlab plots with y-axes on both left and right side
figure
x = 0:0.01:20;
y1 = 200*exp(-0.05*x).*sin(x);
y2 = 0.8*exp(-0.5*x).*sin(10*x);
[AX,H1,H2] = plotyy(x,y1,x,y2,'plot');
详情请在网上搜 Matlab plots with y-axes on both left and right side
追问
你没有回答问题,又何必凑热闹。
来自:求助得到的回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询