ComplexLUSolve Method (Complex, Complex) |
Return the solution x of the linear system Ax = b using
the LU factorization of A.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static Complex[] Solve(
Complex[,] a,
Complex[] b
)
Public Shared Function Solve (
a As Complex(,),
b As Complex()
) As Complex()
public:
static array<Complex>^ Solve(
array<Complex,2>^ a,
array<Complex>^ b
)
static member Solve :
a : Complex[,] *
b : Complex[] -> Complex[]
Parameters
- a
- Type: Imsl.MathComplex
A Complex square matrix.
- b
- Type: Imsl.MathComplex
A Complex column vector.
Return Value
Type:
Complex
A
Complex column vector containing the solution to the linear
system of equations.
Exceptions See Also