AnyRectangularMatrixMultiplyTransposeBySelf Method |
Computes the product of the matrix's transpose and itself.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public virtual SymmetricMatrix MultiplyTransposeBySelf()
Public Overridable Function MultiplyTransposeBySelf As SymmetricMatrix
public:
virtual SymmetricMatrix^ MultiplyTransposeBySelf()
abstract MultiplyTransposeBySelf : unit -> SymmetricMatrix
override MultiplyTransposeBySelf : unit -> SymmetricMatrix
Return Value
Type:
SymmetricMatrixThe product matrix A
T 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