RealEigendecompositionTransformMatrix Property |
Gets the transformation matrix that diagonalizes the original matrix.
Namespace:
Meta.Numerics.Matrices
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public SquareMatrix TransformMatrix { get; }
Public ReadOnly Property TransformMatrix As SquareMatrix
Get
public:
property SquareMatrix^ TransformMatrix {
SquareMatrix^ get ();
}
member TransformMatrix : SquareMatrix with get
Property Value
Type:
SquareMatrixThe read-only, orthogonal matrix V, such that V
TAV = D, where A is the original matrix and D is the
DiagonalizedMatrix.
Remarks The returned matrix is read-only. If you need to modify it, call Copy to obtain a writable copy.
See Also