Constructs a new QRDecomposition.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ matrix As Matrix _ ) |
| C# |
|---|
public QRDecomposition ( Matrix matrix ) |
| C++ |
|---|
public: QRDecomposition ( Matrix^ matrix ) |
Parameters
- matrix (Extreme.Mathematics.LinearAlgebra.Matrix)
- The Matrix that is to be decomposed.
Remarks
By default, the matrix matrix
will be overwritten by its decomposition. You can
preserve the original matrix by setting the
Overwrite property to true
immediately after creating the LUDecomposition.
The decomposition isn't performed until it is needed. You can force the calculation to take place by calling the Decompose() method.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentNullException | matrix is nullNothingnullptr. |