Click or drag to resize

MatrixMathMultiplyFirstTransposed(IROMatrixDouble, IROMatrixDouble, IMatrixDouble) Method

Multiplies matrix a_transposed with matrix b and stores the result in matrix c.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void MultiplyFirstTransposed(
	IROMatrix<double> a,
	IROMatrix<double> b,
	IMatrix<double> c
)

Parameters

a  IROMatrixDouble
First multiplicant.
b  IROMatrixDouble
Second multiplicant.
c  IMatrixDouble
The matrix where to store the result. Has to be of dimension (a.Rows, b.Columns).
See Also