|   | LuDecompositionSolveTranspose Method  | 
        
         
              Solves a set of equation systems of type X * A = B.
            
 
    Namespace: 
   Accord.Math.Decompositions
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
 Syntax
Syntaxpublic double[,] SolveTranspose(
	double[,] value
)
Public Function SolveTranspose ( 
	value As Double(,)
) As Double(,)
Parameters
- value
- Type: SystemDouble
 Right hand side matrix with as many columns as A and any number of rows.
Return Value
Type: 
DoubleMatrix 
X so that 
X * L * U = A.
 See Also
See Also