Vector.AddScaledProductInto<T> Method

Adds the scaled product of a matrix and a vector to a vector.

Definition

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

Parameters

left  Vector<T>
The left operand of the addition.
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.
result  Vector<T>
The vector that is to hold the result. May be null.

Type Parameters

T

Return Value

Vector<T>
The sum of left with factor times the product of leftFactor transformed as specified by operation with rightFactor.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Vector<T>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also