Dot {SimilarityMeasures} | R Documentation |
A function to calculate the dot product between two vectors. This is used in the Frechet algorithm and does not need to be called directly.
Dot(vect1, vect2, dimensions=length(vect1))
vect1 |
An n dimensional vector representing the first vector. |
vect2 |
An n dimensional vector representing the second vector. |
dimensions |
An integer representing the number of dimensions being used for the dot product calculation. This defaults to the length of the first vector. |
This function is called by the Frechet
function.
A floating point value is returned, representing the dot product between the two vectors.
Kevin Toohey