IMSL C# Numerical Library

SuperLU.SolveTranspose Method 

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

public double[] SolveTranspose(
   double[] b
);

Parameters

b
A double vector of length n containing the right hand side, n is the order of input matrix A.

Return Value

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

See Also

SuperLU Class | Imsl.Math Namespace