Click or drag to resize

ManagedLinearAlgebraProviderMatrixMultiplyWithUpdate(Transpose, Transpose, Double, Double, Int32, Int32, Double, Int32, Int32, Double, Double) Method

Multiplies two matrices and updates another with the result. c = alpha*op(a)*op(b) + beta*c

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void MatrixMultiplyWithUpdate(
	Transpose transposeA,
	Transpose transposeB,
	double alpha,
	double[] a,
	int rowsA,
	int columnsA,
	double[] b,
	int rowsB,
	int columnsB,
	double beta,
	double[] c
)

Parameters

transposeA  Transpose
How to transpose the a matrix.
transposeB  Transpose
How to transpose the b matrix.
alpha  Double
The value to scale a matrix.
a  Double
The a matrix.
rowsA  Int32
The number of rows in the a matrix.
columnsA  Int32
The number of columns in the a matrix.
b  Double
The b matrix
rowsB  Int32
The number of rows in the b matrix.
columnsB  Int32
The number of columns in the b matrix.
beta  Double
The value to scale the c matrix.
c  Double
The c matrix.

Implements

ILinearAlgebraProviderTMatrixMultiplyWithUpdate(Transpose, Transpose, T, T, Int32, Int32, T, Int32, Int32, T, T)
See Also