Matrix<T>.Add Product In Place Method
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Add | Adds the product of two matrices to this matrix. |
Add | Adds the product of two matrices to this matrix. |
AddProductInPlace(Matrix<T>, Matrix<T>)
Adds the product of two matrices to this matrix.
public Matrix<T> AddProductInPlace(
Matrix<T> matrix1,
Matrix<T> matrix2
)
Parameters
Return Value
Matrix<T>A reference to this matrix.
Remarks
This method uses the BLAS routine DGEMM.
Exceptions
Argument | matrix1 is null. -or- matrix2 is null. |
Dimension | The dimensions of any of the three matrices involved in this operation are not compatible. |
AddProductInPlace(Matrix<T>, TransposeOperation, Matrix<T>, TransposeOperation)
Adds the product of two matrices to this matrix.
public virtual Matrix<T> AddProductInPlace(
Matrix<T> matrix1,
TransposeOperation operation1,
Matrix<T> matrix2,
TransposeOperation operation2
)
Parameters
- matrix1 Matrix<T>
- The first matrix.
- operation1 TransposeOperation
- The operation to apply to matrix1 before multiplying.
- matrix2 Matrix<T>
- The second matrix.
- operation2 TransposeOperation
- The operation to apply to matrix2 before multiplying.
Return Value
Matrix<T>A reference to this matrix.
Remarks
This method uses the BLAS routine DGEMM.
Exceptions
Argument | matrix1 is null. -or- matrix2 is null. |
Dimension | The dimensions of any of the three matrices involved in this operation are not compatible. |