VectorMathLInfinityNorm(Double, Double) 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 double LInfinityNorm(
double[] vector1,
double[] vector2
)
Parameters
- vector1 Double
- The first vector.
- vector2 Double
- The second vector. Must have same length as the first vector.
Return Value
DoubleThe 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