Click or drag to resize
LUSolve Method (Double, Double)
Solve Ax = b for x using the LU factorization of A.

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

Parameters

a
Type: SystemDouble
A double square matrix.
b
Type: SystemDouble
A double column vector.

Return Value

Type: Double
A double column vector containing the solution to the linear system of equations.
Exceptions
ExceptionCondition
ArgumentException is thrown when the number of rows in the input matrix is not equal to the number of elements in x
SingularMatrixException is thrown when the matrix is singular
See Also