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
)
<ExtensionAttribute>
Public Shared Function AbsoluteMin(Of T) (
vector As Vector(Of Complex(Of T))
) As T
public:
[ExtensionAttribute]
generic<typename T>
static T AbsoluteMin(
Vector<Complex<T>>^ vector
)
[<ExtensionAttribute>]
static member AbsoluteMin :
vector : Vector<Complex<'T>> -> 'T
Parameters
- vector
- Type: Extreme.MathematicsVectorComplexT
A complex vector.
Type Parameters
- T
Return Value
Type:
TThe smallest 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