Click or drag to resize

JaggedArrayMathMultiplyFirstTransposedWithItself Method

Multiplies matrix a_transposed with matrix a itself 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 MultiplyFirstTransposedWithItself(
	double[][] a,
	int arows,
	int acols,
	double[][] c,
	int crows,
	int ccols
)

Parameters

a  Double
First and second multiplicant.
arows  Int32
Number of rows of a.
acols  Int32
Number of columns of a.
c  Double
The matrix where to store the result. Has to be of dimension (acols, acols).
crows  Int32
Number of rows of c.
ccols  Int32
Number of columns of c.
See Also