Adds a multiple of the scaled product of two matrices to this matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> AddScaledProductInPlace(
T factor,
Matrix<T> matrix1,
Matrix<T> matrix2
)
Public Function AddScaledProductInPlace (
factor As T,
matrix1 As Matrix(Of T),
matrix2 As Matrix(Of T)
) As Matrix(Of T)
public:
Matrix<T>^ AddScaledProductInPlace(
T factor,
Matrix<T>^ matrix1,
Matrix<T>^ matrix2
)
member AddScaledProductInPlace :
factor : 'T *
matrix1 : Matrix<'T> *
matrix2 : Matrix<'T> -> Matrix<'T>
Parameters
- factor
- Type: T
Multiplier for the matrix product. - matrix1
- Type: Extreme.MathematicsMatrixT
The first matrix. - matrix2
- Type: Extreme.MathematicsMatrixT
The second matrix.
Return Value
Type:
MatrixTA reference to this matrix.
This method uses the BLAS routine DGEMM.
Reference