Vector 命令
- Vector( <Point> )
-
返回给定点的位置向量。
Vector((3, 2))
生成
u = \(\begin{pmatrix}3\\2\end{pmatrix}\)
.
- Vector( <Start Point>, <End Point> )
-
创建一个从 起点 到 终点 .
Vector((1, 1), (3, 4))
生成
u = \(\begin{pmatrix}2\\3\end{pmatrix}\)
.
|
另请参阅
|