<< cross | Special functions | factor >> |
R = dot(A, B) |
R = dot(A, B, dim) |
numeric arrays.
positive integer scalar: Dimension to operate along.
Scalar Dot Product.
R = dot(A, B) returns the scalar dot product of A and B.
A = [1 2 3;4 5 6;7 8 9];
B = [9 8 7;6 5 4;3 2 1];
R = dot(A, B)
R = dot(A, B, 2)
conj.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET