Return the solution x of the linear system transpose(A)x = b.

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

Syntax

C#
public double[] SolveTranspose(
	double[] b
)
Visual Basic (Declaration)
Public Function SolveTranspose ( _
	b As Double() _
) As Double()
Visual C++
public:
array<double>^ SolveTranspose(
	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 linear system of equations.

See Also