Vector<T>.MaxNumberCore Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.7.0

Overload List

MaxNumberCore(T, Vector<T>) Returns a vector whose elements are the maximum numbers of the components of a vector and a real number.
MaxNumberCore(Vector<T>, Vector<T>) Returns a vector whose elements are the maximum numbers of the components of two vectors.

MaxNumberCore(T, Vector<T>)

Returns a vector whose elements are the maximum numbers of the components of a vector and a real number.
C#
protected virtual Vector<T> MaxNumberCore(
	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 maximum number of the corresponding element of this vector and value.

MaxNumberCore(Vector<T>, Vector<T>)

Returns a vector whose elements are the maximum numbers of the components of two vectors.
C#
protected virtual Vector<T> MaxNumberCore(
	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 maximum numbers of the corresponding elements of this vector and other.

See Also