SchurDecomposition<T>.SchurForm Property

Gets the Schur form of the matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Matrix<T> SchurForm { get; protected set; }

Property Value

Matrix<T>
A DenseMatrix<T> containing the Schur form of the matrix.

Remarks

The Schur form of a matrix is an upper triangular matrix that is similar to the matrix.

When the matrix is real and has complex eigenvalues, then the Schur form is also complex. In this case, a pseudo-triangular matrix is returned, where the 2x2 blocks on the diagonal indicate complex conjugate eigenvalue pairs.

For a complex matrix, the Schur form is always upper triangular.

See Also