NonnegativeMatrixFactorizationBaseTraceOfTransposeAndMultiply Method |
Calculates the trace of the product of the transposed matrix A with B: trace(AᵀB).
Namespace: Altaxo.Calc.LinearAlgebra.Double.FactorizationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static double TraceOfTransposeAndMultiply(
Matrix<double> A,
Matrix<double> B
)
Parameters
- A MatrixDouble
- First matrix (not changed).
- B MatrixDouble
- Second matrix (not changed).
Return Value
DoubleThe value of trace(AᵀB).
See Also