VectorMathLInfinityNorm(Single, Single) 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.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static float LInfinityNorm(
float[] vector1,
float[] vector2
)
Parameters
- vector1 Single
- The first vector.
- vector2 Single
- The second vector. Must have same length as the first vector.
Return Value
SingleThe 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