Computation of the solution vector for the system  A^Tx = b.

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

Syntax

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

Parameters

b
Type: array< Imsl.Math..::.Complex >[]()[]
A Complex vector of length n containing the right hand side, n is the order of input matrix A.

Return Value

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

See Also