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

Returns a vector whose elements are the maximum of the components of a vector and a real number.

Definition

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

Parameters

value  T
A real number.
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 element of this vector and value.

See Also