Click or drag to resize

NonnegativeMatrixFactorizationBaseTraceOfTransposeAndMultiply Method

Calculates the trace of the product of the transposed matrix A with B: trace(AᵀB).

Namespace: Altaxo.Calc.LinearAlgebra.Double.Factorization
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static double TraceOfTransposeAndMultiply(
	Matrix<double> A,
	Matrix<double> B
)

Parameters

A  MatrixDouble
First matrix (not changed).
B  MatrixDouble
Second matrix (not changed).

Return Value

Double
The value of trace(AᵀB).
See Also