Vector<T>.ReplaceValueInPlace Method

Replaces every occurrence of a value with a new value.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Vector<T> ReplaceValueInPlace(
	T oldValue,
	T newValue
)

Parameters

oldValue  T
The value to replace.
newValue  T
The replacement value.

Return Value

Vector<T>
A reference to this vector.

See Also