EigenvalueDecomposition<T> Constructor
Constructs a new EigenvalueDecomposition<T>
object.
DefinitionPermalink
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.4
public EigenvalueDecomposition(
Matrix<T> matrix,
bool overwrite
)
ParametersPermalink
- matrix Matrix<T>
- The DenseMatrix<T> that is to be factorized. This matrix must be positive-definite, or the decomposition will fail.
- overwrite Boolean
- If false, the matrix is preserved. (This is the default.) If true, matrix is destroyed by the decomposition.
RemarksPermalink
The decomposition isn't performed until it is needed. You can force the calculation to take place by calling the Decompose() method.
ExceptionsPermalink
Argument | matrix is null. |
Dimension | matrix is not square. |