AnyRectangularMatrixMultiplyTransposeBySelf Method

Computes the product of the matrix's transpose and itself.

Definition

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public virtual SymmetricMatrix MultiplyTransposeBySelf()

Return Value

SymmetricMatrix
The product matrix AT A.

Remarks

This particular matrix multiplication is guaranteed to produce a symmetric matrix. Carrying out the multiplication using this method is not only faster than calling A.Transpose * A, but also returns the result as a SymmetricMatrix.

See Also