Managed Array Functions Of Single.Min Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
Overload List
Min<TStorage>(Int32, TStorage, TStorage, TStorage) | |
Min( | Computes the minimum of all elements in the span. |
Min( | Computes the minimum of all elements in the span. |
Min( | Computes the minimum of a number and each element of a span. |
Min( | Computes the minimum of corresponding elements of two spans. |
Min( | Computes the minimum of a number and each element of a span. |
Min( | Computes the minimum of corresponding elements of two spans. |
Min<TStorage>(Int32, TStorage) | Computes the minimum of all elements in the array. |
Min<TStorage>(Int32, TStorage, TStorage, TStorage) | Computes the minimum of each element of an array and the corresponding element in another array. |
Min(Int32, ReadOnlySpan<Single>, Int32)
Computes the minimum of all elements in the span.
public override float Min(
int length,
ReadOnlySpan<float> operand,
int stride
)
Parameters
- length Int32
- The number of elements in the span.
- operand ReadOnlySpan<Single>
- The span that holds the operands.
- stride Int32
- The distance between elements in operand.
Return Value
SingleThe minimum of the elements of operand.