ComplexLUSolve Method (Complex) |
Return the solution x of the linear system Ax = bi> using
the LU factorization of A, where A is the input matrix
a.
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 array containing the right-hand side of the linear
system.
Return Value
Type:
Complex
A
Complex array containing the solution to the linear system
of equations.
See Also