- 2
- 0
- 约1.32万字
- 约 70页
- 2017-01-02 发布于北京
- 举报
* 图形修饰与控制——subplot subplot——在图形窗口绘制子图形 调用:subplot(m,n,p)—— 图形窗口分成m×n个子窗口,并将第p子窗口作为当前窗口。 子窗口的排列顺序为左上角为第一窗口 信息管理与信息系统专业 崔基哲 Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. t=0:pi/100:2*pi; y=sin(t);y1=sin(t+0.25);y2=sin(t+0.5); subplot(1,3,1);plot(t,y); subplot(1,3,2);plot(t,y1); subplot(1,3,3);plot(t,y2); Evaluation only. Created with Aspose.Slides for .NET 3.5 Client Profile 5.2.0.0. Copyright 2004-2011 Aspose Pty Ltd. subplot(3,1,1);plot(t,y); subplot(3,1,2);plot(t,y1); subplot(3,1,3);plot(t,y2); Evaluation only. Crea
原创力文档

文档评论(0)