SuperLUSolveTranspose Method |
Computation of the solution vector for the system
.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double[] SolveTranspose(
double[] b
)
Public Function SolveTranspose (
b As Double()
) As Double()
public:
array<double>^ SolveTranspose(
array<double>^ b
)
member SolveTranspose :
b : float[] -> float[]
Parameters
- b
- Type: SystemDouble
A double vector of length n containing the right hand
side, n is the order of input matrix A.
Return Value
Type:
Double
A
double vector containing the solution to the
system
. Optionally, the solution
is improved by iterative refinement, if
IterativeRefinement = true.
Method
SolveTranspose internally first
factorizes matrix
A (step 1 of the introduction) if the
factorization has not been done before.
See Also