Matlab实用程序--图形应用-双y轴图形的绘制
Posted studyer_domi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Matlab实用程序--图形应用-双y轴图形的绘制相关的知识,希望对你有一定的参考价值。
function shili04
h0=figure('toolbar','none',...
'position',[200 150 450 250],...
'name','实例04');
x=0:900;a=1000;b=0.005;
y1=2*x;
y2=cos(b*x);
[haxes,hline1,hline2]=plotyy(x,y1,x,y2,'semilogy','plot');
axes(haxes(1))
ylabel('semilog plot');
axes(haxes(2))
ylabel('linear plot');
以上是关于Matlab实用程序--图形应用-双y轴图形的绘制的主要内容,如果未能解决你的问题,请参考以下文章