RealEigendecompositionTransformMatrix Property

Gets the transformation matrix that diagonalizes the original matrix.

Definition

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public SquareMatrix TransformMatrix { get; }

Property Value

SquareMatrix
The read-only, orthogonal matrix V, such that VTAV = 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