Computation of the solution vector for the system  Ax = b.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public double[] Solve(
	double[] b
)
Visual Basic (Declaration)
Public Function Solve ( _
	b As Double() _
) As Double()
Visual C++
public:
array<double>^ Solve(
	array<double>^ b
)

Parameters

b
Type: array< System..::.Double >[]()[]
A double vector of length n, n the order of input matrix A, containing the right hand side.

Return Value

A double vector containing the solution to the system Ax = b. Optionally, the solution is improved by iterative refinement, if IterativeRefinement = true. Method Solve internally first factorizes matrix A (step 1 of the introduction) if the factorization has not been done before.

See Also