trrfs - multiple declarations

Function trrfs

void trrfs (
  char uplo,
  char trans,
  char diag,
  int n,
  int nrhs,
  std.complex.Complex!(double)* a,
  int lda,
  std.complex.Complex!(double)* b,
  int ldb,
  std.complex.Complex!(double)* x,
  int ldx,
  double* ferr,
  double* berr,
  std.complex.Complex!(double)* work,
  double* rwork,
  ref int info
);

Function trrfs

void trrfs (
  char uplo,
  char trans,
  char diag,
  int n,
  int nrhs,
  std.complex.Complex!(float)* a,
  int lda,
  std.complex.Complex!(float)* b,
  int ldb,
  std.complex.Complex!(float)* x,
  int ldx,
  float* ferr,
  float* berr,
  std.complex.Complex!(float)* work,
  float* rwork,
  ref int info
);

Function trrfs

Provides forward and backward error bounds for the solution of a triangular system of linear equations A X=B, A**T X=B or A**H X=B.

void trrfs (
  char uplo,
  char trans,
  char diag,
  int n,
  int nrhs,
  float* a,
  int lda,
  float* b,
  int ldb,
  float* x,
  int ldx,
  float* ferr,
  float* berr,
  float* work,
  int* iwork,
  ref int info
);

Function trrfs

void trrfs (
  char uplo,
  char trans,
  char diag,
  int n,
  int nrhs,
  double* a,
  int lda,
  double* b,
  int ldb,
  double* x,
  int ldx,
  double* ferr,
  double* berr,
  double* work,
  int* iwork,
  ref int info
);