DenseVector<T>.AddInPlace Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

AddInPlace(T) Adds a constant to a vector.
AddInPlace(Vector<T>) Adds another vector to this vector in-place.

AddInPlace(T)

Adds a constant to a vector.
C#
public override Vector<T> AddInPlace(
	T value
)

Parameters

value  T
The value to add.

Return Value

Vector<T>
A reference to this instance.

See Also