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()
Public Overridable Function MultiplySelfByTranspose As SymmetricMatrix
public:
virtual SymmetricMatrix^ MultiplySelfByTranspose()
abstract MultiplySelfByTranspose : unit -> SymmetricMatrix
override MultiplySelfByTranspose : unit -> SymmetricMatrix
Return Value
Type:
SymmetricMatrixThe product matrix A A
T.
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