Vector<T>.Max Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

Max() Returns the value of the largest element in this vector.
Max(Int32) Returns the value of the largest element in this vector.

Max

Returns the value of the largest element in this vector.
C#
public virtual T Max()

Return Value

T
The value of the largest element in this Vector<T>.

Max(Int32)

Returns the value of the largest element in this vector.
C#
public T Max(
	out int index
)

Parameters

index  Int32
On return, the index of the largest element.

Return Value

T
The value of the largest element in this Vector<T>.

See Also