Vector.Absolute Max Method
Definition
Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Absolute | Returns the value of the element in this vector that has the largest absolute value. |
Absolute | Returns the value of the element in this vector that has the largest absolute value. |
Absolute | Returns the value of the element in this vector that has the largest absolute value. |
Absolute | Returns the value of the element in this vector that has the largest absolute value. |
AbsoluteMax<T>(Vector<T>)
Returns the value of the element in this
vector that has the largest absolute
value.
public static T AbsoluteMax<T>(
this Vector<T> vector
)
Parameters
- vector Vector<T>
- A vector.
Type Parameters
- T
Return Value
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 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).AbsoluteMax<T>(Vector<Complex<T>>)
Returns the value of the element in this
vector that has the largest absolute
value.
public static T AbsoluteMax<T>(
this Vector<Complex<T>> vector
)
Parameters
Type Parameters
- T
Return Value
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 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).AbsoluteMax<T>(Vector<T>, Int32)
Returns the value of the element in this
vector that has the largest absolute
value.
public static T AbsoluteMax<T>(
this Vector<T> vector,
out int index
)
Parameters
- vector Vector<T>
- A vector.
- index Int32
- On return, the index of the element with largest absolute value.
Type Parameters
- T
Return Value
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 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).AbsoluteMax<T>(Vector<Complex<T>>, Int32)
Returns the value of the element in this
vector that has the largest absolute
value.
public static T AbsoluteMax<T>(
this Vector<Complex<T>> vector,
out int index
)
Parameters
- vector Vector<Complex<T>>
- A complex vector.
- index Int32
- On return, the index of the element with largest absolute value.
Type Parameters
- T
Return Value
TThe largest of the absolute values of the elements of vector.