LUSolve Method (Double, Double) |
Solve Ax = b for x using the LU factorization of A.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public static double[] Solve(
double[,] a,
double[] b
)
Public Shared Function Solve (
a As Double(,),
b As Double()
) As Double()
public:
static array<double>^ Solve(
array<double,2>^ a,
array<double>^ b
)
static member Solve :
a : float[,] *
b : float[] -> float[]
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 See Also