Dot Command
- Dot( <Vector>, <Vector> )
-
Returns the dot product (scalar product) of the two vectors.
Dot((1, 3, 2), (0, 3, -2))
yields 5, the scalar product of (1, 3, 2) and (0, 3, -2).
See also Cross Command. |
Returns the dot product (scalar product) of the two vectors.
Dot((1, 3, 2), (0, 3, -2))
yields 5, the scalar product of (1, 3, 2) and (0, 3, -2).
See also Cross Command. |