Click or drag to resize

AnyRectangularMatrixMultiplySelfByTranspose Method

Computes the product of the matrix and its transpose.

Namespace:  Meta.Numerics.Matrices
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public virtual SymmetricMatrix MultiplySelfByTranspose()

Return Value

Type: SymmetricMatrix
The product matrix A AT.
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 * A.Transpose, but also returns the result as a SymmetricMatrix.

See Also