Vector<T>.AddScaledProductInPlace(T, LinearOperator<T>, TransposeOperation, Vector<T>) Method

Adds the scaled product of a matrix and a vector in-place to a vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> AddScaledProductInPlace(
	T factor,
	LinearOperator<T> leftFactor,
	TransposeOperation operation,
	Vector<T> rightFactor
)

Parameters

factor  T
The scale factor for the matrix-vector product.
leftFactor  LinearOperator<T>
A matrix that acts as the left operand of the multiplication.
operation  TransposeOperation
The operation to be performed on leftFactor before multiplying.
rightFactor  Vector<T>
The right operand of the multiplication.

Return Value

Vector<T>
A reference to this instance.

See Also