Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> AddProductInPlace(
LinearOperator<T> matrix,
TransposeOperation operation,
Vector<T> vector
)
Public Function AddProductInPlace (
matrix As LinearOperator(Of T),
operation As TransposeOperation,
vector As Vector(Of T)
) As Vector(Of T)
public:
Vector<T>^ AddProductInPlace(
LinearOperator<T>^ matrix,
TransposeOperation operation,
Vector<T>^ vector
)
member AddProductInPlace :
matrix : LinearOperator<'T> *
operation : TransposeOperation *
vector : Vector<'T> -> Vector<'T>
Parameters
- matrix
- Type: Extreme.Mathematics.LinearAlgebraLinearOperatorT
A MatrixT. - operation
- Type: Extreme.MathematicsTransposeOperation
The operation to apply to matrix
before multiplying. - vector
- Type: Extreme.MathematicsVectorT
A vector.
Return Value
Type:
VectorTA reference to this instance.
Exception | Condition |
---|
ArgumentNullException | matrix is -or- vector is |
DimensionMismatchException |
The number of rows of matrix does not equal the length of this instance.
-or- The number of columns of matrix does not equal the length of
vector. |
Reference