Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected QRDecomposition(
Matrix<T> matrix,
bool overwrite
)
Protected Sub New (
matrix As Matrix(Of T),
overwrite As Boolean
)
protected:
QRDecomposition(
Matrix<T>^ matrix,
bool overwrite
)
new :
matrix : Matrix<'T> *
overwrite : bool -> QRDecomposition
Parameters
- matrix
- Type: Extreme.MathematicsMatrixT
The matrix that is to be
decomposed. - overwrite
- Type: SystemBoolean
If , the matrix
is preserved. (This is the default.) If ,
matrix is destroyed by the decomposition.
The decomposition isn't performed until it
is needed. You can force the calculation to take
place by calling the Decompose
method.
Reference