Click or drag to resize

DistanceChebyshevT(VectorT, VectorT) Method

Chebyshev Distance, i.e. the Infinity-norm of the difference.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static double Chebyshev<T>(
	Vector<T> a,
	Vector<T> b
)
where T : struct, new(), IEquatable<T>, IFormattable

Parameters

a  VectorT
The first vector.
b  VectorT
The second vector.

Type Parameters

T
The type of the vector elements.

Return Value

Double
The distance value.
See Also