ManagedArrayFunctions<T>.Min Method

Definition

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

Overload List

Min<TStorage>(Int32, TStorage, TStorage, TStorage) 
Min(Int32, ReadOnlySpanSlice<T>) Computes the minimum of all elements in the span.
Min(Int32, ReadOnlySpan<T>, Int32) Computes the minimum of all elements in the span.
Min(Int32, ReadOnlySpanSlice<T>, T, SpanSlice<T>) Computes the minimum of a number and each element of a span.
Min(Int32, ReadOnlySpanSlice<T>, ReadOnlySpanSlice<T>, SpanSlice<T>) Computes the minimum of corresponding elements of two spans.
Min(Int32, ReadOnlySpan<T>, Int32, T, Span<T>, Int32) Computes the minimum of a number and each element of a span.
Min(Int32, ReadOnlySpan<T>, Int32, ReadOnlySpan<T>, Int32, Span<T>, Int32) 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<T>, Int32)

Computes the minimum of all elements in the span.
C#
public override T Min(
	int length,
	ReadOnlySpan<T> operand,
	int stride
)

Parameters

length  Int32
The number of elements in the span.
operand  ReadOnlySpan<T>
The span that holds the operands.
stride  Int32
The distance between elements in operand.

Return Value

T
The minimum of the elements of operand.

Min(Int32, ReadOnlySpan<T>, Int32, ReadOnlySpan<T>, Int32, Span<T>, Int32)

Computes the minimum of corresponding elements of two spans.
C#
public override void Min(
	int length,
	ReadOnlySpan<T> first,
	int firstStride,
	ReadOnlySpan<T> second,
	int secondStride,
	Span<T> result,
	int resultStride
)

Parameters

length  Int32
The number of elements in the span.
first  ReadOnlySpan<T>
The span that holds the first operands.
firstStride  Int32
The distance between elements in first.
second  ReadOnlySpan<T>
The span that holds the second operands.
secondStride  Int32
The distance between elements in second.
result  Span<T>
The span that holds the results.
resultStride  Int32
The distance between elements in result.

See Also