Vector<T>.MaxInPlace Method

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

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Vector<T> MaxInPlace(
	T value
)

Parameters

value  T
A real number.

Return Value

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

See Also