Click or drag to resize
Accord.NET (logo)

QrDecompositionFSolveTranspose Method

Least squares solution of X * A = B

Namespace:  Accord.Math.Decompositions
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public float[,] SolveTranspose(
	float[,] value
)
Request Example View Source

Parameters

value
Type: SystemSingle
Right-hand-side matrix with as many columns as A and any number of rows.

Return Value

Type: Single
A matrix that minimized the two norm of X * Q * R - B.
Exceptions
ExceptionCondition
ArgumentExceptionMatrix column dimensions must be the same.
InvalidOperationExceptionMatrix is rank deficient.
See Also