Click or drag to resize

VectorMathLInfinityNorm(Int32, Int32) Method

Returns the L-infinity norm of the difference of vector1 and vector2 (as is the maximum of the absolute value of the differences of the elements). If one of the elements of the vector is invalid, the return value is also invalid (for the floating point types).

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static long LInfinityNorm(
	int[] vector1,
	int[] vector2
)

Parameters

vector1  Int32
The first vector.
vector2  Int32
The second vector. Must have same length as the first vector.

Return Value

Int64
The L-infinity norm of the element-wise differences of the provided vectors (as is the maximum of the absolute value of the differences).
See Also