Vector.Maximum Distance<T> Method
Returns the largest distance between two vectors.
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
The largest difference between corresponding components of left and right.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static T MaximumDistance<T>(
Vector<T> left,
Vector<T> right
)
Parameters
Type Parameters
- T
Return Value
TThe largest difference between corresponding components of 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. |