Vector<T>.MultiplyInPlace Method

Definition

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

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>.

Vector<T>.MultiplyInPlace(T)

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

Parameters

factor  T
The factor to multiply the vector by.

Return Value

Vector<T>
A reference to this vector.

Vector<T>.MultiplyInPlace(Matrix<T>, MatrixOperationSide)

Multiplies a Vector<T> by a Matrix<T>.
C#
public virtual Vector<T> MultiplyInPlace(
	Matrix<T> matrix,
	MatrixOperationSide side
)

Parameters

matrix  Matrix<T>
A Matrix<T>.
side  MatrixOperationSide
A MatrixOperationSide value that indicates whether the matrix is the left or right operand of the multiplication.

Return Value

Vector<T>
A reference to this instance.

Exceptions

ArgumentNullExceptionmatrix is null
DimensionMismatchException The number of rows or columns of matrix does not equal the length of this instance.

-or-

matrix is not a square matrix.

See Also