ILinearAlgebraProviderTMatrixMultiplyWithUpdate Method |
Multiplies two matrices and updates another with the result. c = alpha*op(a)*op(b) + beta*c
Namespace: Altaxo.Calc.Providers.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax void MatrixMultiplyWithUpdate(
Transpose transposeA,
Transpose transposeB,
T alpha,
T[] a,
int rowsA,
int columnsA,
T[] b,
int rowsB,
int columnsB,
T beta,
T[] c
)
Parameters
- transposeA Transpose
- How to transpose the a matrix.
- transposeB Transpose
- How to transpose the b matrix.
- alpha T
- The value to scale a matrix.
- a T
- The a matrix.
- rowsA Int32
- The number of rows in the a matrix.
- columnsA Int32
- The number of columns in the a matrix.
- b T
- The b matrix
- rowsB Int32
- The number of rows in the b matrix.
- columnsB Int32
- The number of columns in the b matrix.
- beta T
- The value to scale the c matrix.
- c T
- The c matrix.
See Also