Returns the infinity norm of a vector.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static T InfinityNorm<T>(
this Vector<Complex<T>> vector
)
<ExtensionAttribute>
Public Shared Function InfinityNorm(Of T) (
vector As Vector(Of Complex(Of T))
) As T
public:
[ExtensionAttribute]
generic<typename T>
static T InfinityNorm(
Vector<Complex<T>>^ vector
)
[<ExtensionAttribute>]
static member InfinityNorm :
vector : Vector<Complex<'T>> -> 'T
Parameters
- vector
- Type: Extreme.MathematicsVectorComplexT
A complex vector.
Type Parameters
- T
Return Value
Type:
TThe infinity norm of
vector.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
VectorComplexT. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
The infinity-norm of a vector is equal to the
largest absolute value of its elements.
Reference