Vector.Cosine Distance<T> Method
Returns the cosine of the angle between two vectors.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
The cosine of the angle between left and right.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public static T CosineDistance<T>(
Vector<T> left,
Vector<T> right
)
Parameters
Type Parameters
- T
Return Value
TThe cosine of the angle between left and right.
Exceptions
Argument | left is null. -or- right is null. |
Dimension | The length of left is not equal to the length of right. |