作者Gwaewluin (神无月 孝臣)
看板MATLAB
标题Re: [请益] 关於画正方形
时间Tue Apr 11 07:08:29 2006
※ 引述《sheviqs (闷)》之铭言:
: 想请教各位高手
: 我所想到可以画一个长方形(横放)的方法
: 在座标轴上 用两条千垂线与两条水平线去围
: 这是我想的 不知道可行吗?
: 可以写四条线 然後分别给他们边就的条件
: 比如说 先做出 y=2 y=10 x=1 x=100
: 然後限定他左右跟上下的界
: 还是可以请高手教我其他方法
: 我是新手
: 如果问的问题有问题之处
: 还请多包涵
: ^^
: 谢谢好心人士回答~
把长方形四个座标设好
假设四个座标是a1(0,0) a2(5,0) a3(5,3) a4(0,3)
然後把x和y的座标依照自己喜欢的顺序分别抓出来後plot即可
x = [ 0 5 5 0 0 ] ;
y = [ 0 0 3 3 0 ] ;
plot( x , y ) % 依照a1 a2 a3 a4 a1的顺序把点连起来,最後再放a1是要把图封起来用
反正就是当作在打点後连连看就对了
这样子可以把许多怪图形都画出来 XD
--
Deserves death! I daresay he does. Many that live deserve death. And some die
that deserve life. Can you give that to them? Then be not too eager to deal out
death in the name of justice, fearing for your own safty. Even the wise cannot
see all ends.
Gandalf to Frodo
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 61.225.206.95
※ 编辑: Gwaewluin 来自: 61.225.206.95 (04/11 07:08)