Function ssysvx_

Solves a real symmetric indefinite system of linear equations AX=B, and provides an estimate of the condition number and error bounds on the solution.

extern(C) void ssysvx_ (
  char* fact,
  char* uplo,
  int* n,
  int* nrhs,
  float* a,
  int* lda,
  float* af,
  int* ldaf,
  int* ipiv,
  float* b,
  int* ldb,
  float* x,
  int* ldx,
  float* rcond,
  float* ferr,
  float* berr,
  float* work,
  int* lwork,
  int* iwork,
  int* info,
  int fact_len,
  int uplo_len
);