IArrayFunctions<T, TShape, TArray>.Min Method

Definition

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

Overload List

Min(TShape, TArray) Computes the minimum of all elements in the array.
Min(TShape, TArray, TArray, TArray) Computes the minimum of corresponding elements of two arrays.

Min(TShape, TArray)

Computes the minimum of all elements in the array.
C#
T Min(
	TShape shape,
	TArray operand
)

Parameters

shape  TShape
The number of elements in the array.
operand  TArray
The array that holds the operands.

Return Value

T
The minimum of the elements of operand.

Min(TShape, TArray, TArray, TArray)

Computes the minimum of corresponding elements of two arrays.
C#
void Min(
	TShape shape,
	TArray first,
	TArray second,
	TArray result
)

Parameters

shape  TShape
The number of elements in the array.
first  TArray
The array that holds the first operands.
second  TArray
The array that holds the second operands.
result  TArray
The array that holds the results.

See Also