Vector<T>.Subtract Product In Place Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
A reference to this instance.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public Vector<T> SubtractProductInPlace(
LinearOperator<T> matrix,
Vector<T> vector
)
Parameters
- matrix LinearOperator<T>
- A Matrix<T>.
- vector Vector<T>
- A vector.
Return Value
Vector<T>A reference to this instance.
Exceptions
Argument | matrix is null. -or- vector is null. |
Dimension | 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. |