Click or drag to resize
ComplexLU.Solve Method (Complex[,],Complex[])
Return the solution x of the linear system Ax = b using the LU factorization of A.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public static Complex[] Solve(
	Complex[,] a,
	Complex[] b
)

Parameters

a
Type:Imsl.Math.Complex[,]
A Complex square matrix.
b
Type:Imsl.Math.Complex[]
A Complex column vector.

Return Value

Type:Complex[]
A Complex column vector containing the solution to the linear system of equations.
Exceptions
ExceptionCondition
ArgumentException is thrown when the number of rows in A is not equal to the length of b
SingularMatrixException is thrown when the matrix is singular
See Also