Module ZGESVX.C in CLAPACKSolves a complex general system of linear equations AX=B, A**T X=B or A**H X=B, and provides an estimate of the condition number and error bounds on the solution. (Expert driver.). [C version of LAPACK routine, converted from Fortran by f2c.].
int zgesvx_(char *fact, char *trans, integer *n, integer * nrhs, doublecomplex * a, integer *lda, doublecomplex *af, integer * ldaf, integer *ipiv, char *equed, doublereal *r, doublereal *c, doublecomplex *b, integer *ldb, doublecomplex * x, integer *ldx, doublereal *rcond, doublereal *ferr, doublereal *berr, double complex * work, doublereal *rwork, integer *info)| D2c1 | Solution of systems of linear equations, including matrix inverses, and LU and related factorizations (general complex non-Hermitian matrices) |