Vector<T>.MinCore(Vector<T>, Vector<T>) Method

Returns a vector whose elements are the minimums of the components of two vectors.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
protected virtual Vector<T> MinCore(
	Vector<T> other,
	Vector<T> result
)

Parameters

other  Vector<T>
A Vector<T>.
result  Vector<T>
The vector that is to hold the result. May be null.

Return Value

Vector<T>
A vector whose elements are the largest of the corresponding elements of this vector and other.

Exceptions

DimensionMismatchExceptionThe length of this vector is not equal to the length of other.

See Also