Returns the value of the element in this
vector that has the smallest absolute
value.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static T AbsoluteMin<T>(
this Vector<Complex<T>> vector,
out int index
)
<ExtensionAttribute>
Public Shared Function AbsoluteMin(Of T) (
vector As Vector(Of Complex(Of T)),
<OutAttribute> ByRef index As Integer
) As T
public:
[ExtensionAttribute]
generic<typename T>
static T AbsoluteMin(
Vector<Complex<T>>^ vector,
[OutAttribute] int% index
)
[<ExtensionAttribute>]
static member AbsoluteMin :
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 smallest 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