本帖最后由 牛小贱 于 2014-5-8 12:43 编辑
我上传的图形就是在其他软件里画的,但现在因要在matlab里处理其他计算数据,需把这些数据结果框在图中的框里。我对直弯角(第一个图)的编了一下程,但画的结果不对,程序如下。圆弯角的就更不知怎么下手了,所以才来求教的,请指点一下,谢谢
- clear all;
- clc;
- hold on
- plot3([-2,0],[0,0],[0,0],'k','LineWidth',1.5);
- plot3([-2,2],[-2,-2],[0,0],'k','LineWidth',1.5);
- plot3([0,0],[0,4],[0,0],'k','LineWidth',1.5);
- plot3([2,2],[-2,2],[0,0],'k','LineWidth',1.5);
- plot3([2,4],[2,2],[0,0],'k','LineWidth',1.5);
- plot3([0,4],[4,4],[0,0],'k','LineWidth',1.5);
-
- plot3([-2,0],[0,0],[1,1],'k','LineWidth',1.5);
- plot3([-2,2],[-2,-2],[1,1],'k','LineWidth',1.5);
- plot3([0,0],[0,4],[1,1],'k','LineWidth',1.5);
- plot3([2,2],[-2,2],[1,1],'k','LineWidth',1.5);
- plot3([2,4],[2,2],[1,1],'k','LineWidth',1.5);
- plot3([0,4],[4,4],[1,1],'k','LineWidth',1.5);
- hold off
复制代码
|