Solve Ax = b where A is a positive definite matrix with elements of type double.

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 array containing the right-hand side of the linear system.

Return Value

A double array containing the solution to the system of linear equations.

See Also