Vector Extensions.Infinity Norm Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Infinity | Returns the infinity norm of a vector. |
Infinity | Returns the infinity norm of a vector. |
InfinityNorm<T>(Vector<T>)
Returns the infinity norm of a vector.
public static T InfinityNorm<T>(
this Vector<T> vector
)
Parameters
- vector Vector<T>
- A vector.
Type Parameters
- T
Return Value
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 Vector<T>. 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).Remarks
The infinity-norm of a vector is equal to the largest absolute value of its elements.
InfinityNorm<T>(Vector<Complex<T>>)
Returns the infinity norm of a vector.
public static T InfinityNorm<T>(
this Vector<Complex<T>> vector
)
Parameters
Type Parameters
- T
Return Value
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 Vector<Complex<T>>. 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).Remarks
The infinity-norm of a vector is equal to the largest absolute value of its elements.