Generalized Eigenvalue Decomposition<T> Constructor
Constructs a new GeneralizedEigenvalueDecomposition<T>
object.
Definition
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
protected GeneralizedEigenvalueDecomposition(
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. |