Generalized Schur Decomposition<T> Constructor
Constructs a new GeneralizedSchurDecomposition<T>
object.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
protected GeneralizedSchurDecomposition(
Matrix<T> matrix1,
Matrix<T> matrix2,
bool overwrite
)
Parameters
Remarks
The decomposition isn't performed until it is needed. You can force the calculation to take place by calling the Decompose() method.
Exceptions
Argument | matrix1 is null. -or- matrix2 is null. |
Dimension | matrix1 is not square. -or- matrix2 is not square. |