Go to: Synopsis. Return value. Related. MEL examples.
dot
<vector> <vector>
dot is undoable, queryable, and editable.
This command returns the dot product of two vectors.vector $u=<<1,2,-2>>, $v=<<3,0,1>>; $x=dot($u, $v); // Result: 1 //