ConstantVector<T>.MultiplyInPlace Method

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

MultiplyInPlace(T) Multiplies a vector in-place by the specified factor.
MultiplyInPlace(Matrix<T>, MatrixOperationSide) Multiplies a Vector<T> by a Matrix<T>.

MultiplyInPlace(T)

Multiplies a vector in-place by the specified factor.
C#
public override Vector<T> MultiplyInPlace(
	T factor
)

Parameters

factor  T
The factor to multiply the vector by.

Return Value

Vector<T>
A reference to this vector.

See Also