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