ptsvx - multiple declarations

Function ptsvx

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

void ptsvx (
  char fact,
  int n,
  int nrhs,
  float* d,
  float* e,
  float* df,
  float* ef,
  float* b,
  int ldb,
  float* x,
  int ldx,
  float rcond,
  float* ferr,
  float* berr,
  float* work,
  ref int info
);

Function ptsvx

void ptsvx (
  char fact,
  int n,
  int nrhs,
  double* d,
  double* e,
  double* df,
  double* ef,
  double* b,
  int ldb,
  double* x,
  int ldx,
  double rcond,
  double* ferr,
  double* berr,
  double* work,
  ref int info
);

Function ptsvx

void ptsvx (
  char fact,
  int n,
  int nrhs,
  float* d,
  std.complex.Complex!(float)* e,
  float* df,
  std.complex.Complex!(float)* ef,
  std.complex.Complex!(float)* b,
  int ldb,
  std.complex.Complex!(float)* x,
  int ldx,
  float rcond,
  float* ferr,
  float* berr,
  std.complex.Complex!(float)* work,
  float* rwork,
  ref int info
);

Function ptsvx

void ptsvx (
  char fact,
  int n,
  int nrhs,
  double* d,
  std.complex.Complex!(double)* e,
  double* df,
  std.complex.Complex!(double)* ef,
  std.complex.Complex!(double)* b,
  int ldb,
  std.complex.Complex!(double)* x,
  int ldx,
  double rcond,
  double* ferr,
  double* berr,
  std.complex.Complex!(double)* work,
  double* rwork,
  ref int info
);