| 
            
              QrDecompositionDSolveTranspose Method 
             | 
          
        
         Least squares solution of X * A = B
 
    Namespace: 
   Accord.Math.Decompositions
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic decimal[,] SolveTranspose(
	decimal[,] value
)
Public Function SolveTranspose ( 
	value As Decimal(,)
) As Decimal(,)
 Request Example
		View SourceParameters
- value
 - Type: SystemDecimal
Right-hand-side matrix with as many columns as A and any number of rows. 
Return Value
Type: 
DecimalA matrix that minimized the two norm of 
X * Q * R - B.
Exceptions| Exception | Condition | 
|---|
| ArgumentException | Matrix column dimensions must be the same. | 
| InvalidOperationException | Matrix is rank deficient. | 
See Also