Vector<T>.Min Method

Definition

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

Overload List

Min() Returns the value of the smallest element in this vector.
Min(Int32) Returns the value of the smallest element in this vector.

Min

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

Return Value

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

Min(Int32)

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

Parameters

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

Return Value

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

See Also