|
回复 楼主 的帖子
图出来以后,可以通过上面的工具栏,白色按钮
进入以后,在里面修改
如果想用语句控制,请搜索下论坛
以下是matlab自带的例子
-
- >> 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');
- >> set(get(AX(1),'Ylabel'),'String','Slow Decay')
- set(get(AX(2),'Ylabel'),'String','Fast Decay')
- >> xlabel('Time (\musec)')
- title('Multiple Decay Rates')
- >> set(H1,'LineStyle','--')
- set(H2,'LineStyle',':')
复制代码
[ 本帖最后由 sigma665 于 2008-6-24 09:24 编辑 ] |
评分
-
1
查看全部评分
-
|