Returns the value of the element in this
vector that has the largest absolute
value.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static T AbsoluteMax<T>(
this Vector<Complex<T>> vector,
out int index
)
<ExtensionAttribute>
Public Shared Function AbsoluteMax(Of T) (
vector As Vector(Of Complex(Of T)),
<OutAttribute> ByRef index As Integer
) As T
public:
[ExtensionAttribute]
generic<typename T>
static T AbsoluteMax(
Vector<Complex<T>>^ vector,
[OutAttribute] int% index
)
[<ExtensionAttribute>]
static member AbsoluteMax :
vector : Vector<Complex<'T>> *
index : int byref -> 'T
Parameters
- vector
- Type: Extreme.MathematicsVectorComplexT
A complex vector. - index
- Type: SystemInt32
On return, the index of the element with largest absolute value.
Type Parameters
- T
Return Value
Type:
TThe largest of the absolute values of the elements
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).
Reference