Click or drag to resize
Accord.NET (logo)

QrDecompositionF Constructor

Constructs a QR decomposition.

Namespace:  Accord.Math.Decompositions
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public QrDecompositionF(
	float[,] value,
	bool transpose = false,
	bool economy = true,
	bool inPlace = false
)
Request Example View Source

Parameters

value
Type: SystemSingle
The matrix A to be decomposed.
transpose (Optional)
Type: SystemBoolean
True if the decomposition should be performed on the transpose of A rather than A itself, false otherwise. Default is false.
economy (Optional)
Type: SystemBoolean
True to perform the economy decomposition, where only .the information needed to solve linear systems is computed. If set to false, the full QR decomposition will be computed.
inPlace (Optional)
Type: SystemBoolean
True if the decomposition should be done in place, overriding the given matrix value. Default is false.
See Also