Vector.BrayCurtisDistance<T> Method
Returns the Bray-Curtis distance between two vectors.
DefinitionPermalink
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
The sum of the ratio of the sum of the differences between corresponding elements of left and right to their combined sum.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
public static T BrayCurtisDistance<T>(
Vector<T> left,
Vector<T> right
)
ParametersPermalink
Type ParametersPermalink
- T
Return ValuePermalink
TThe sum of the ratio of the sum of the differences between corresponding elements of left and right to their combined sum.
ExceptionsPermalink
Argument | left is null. -or- right is null. |
Dimension | The length of left is not equal to the length of right. |