IMSL C# Numerical Library

ComplexSuperLU.SolveConjugateTranspose Method 

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

public Complex[] SolveConjugateTranspose(
   Complex[] b
);

Parameters

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

Return Value

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

See Also

ComplexSuperLU Class | Imsl.Math Namespace