SchurDecomposition<T>.SchurVectors Property

Gets the Schur vectors of the matrix.

Definition

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

Property Value

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

Remarks

This matrix is the orthogonal (or unitary) matrix that transforms the original matrix into triangular form.

See Also