tptrs - multiple declarations

Function tptrs

Solves a triangular system of linear equations AX=B, A**T X=B or A**H X=B, where A is held in packed storage.

void tptrs (
  char uplo,
  char trans,
  char diag,
  int n,
  int nrhs,
  float* ap,
  float* b,
  int ldb,
  ref int info
);

Function tptrs

void tptrs (
  char uplo,
  char trans,
  char diag,
  int n,
  int nrhs,
  double* ap,
  double* b,
  int ldb,
  ref int info
);

Function tptrs

void tptrs (
  char uplo,
  char trans,
  char diag,
  int n,
  int nrhs,
  std.complex.Complex!(float)* ap,
  std.complex.Complex!(float)* b,
  int ldb,
  ref int info
);

Function tptrs

void tptrs (
  char uplo,
  char trans,
  char diag,
  int n,
  int nrhs,
  std.complex.Complex!(double)* ap,
  std.complex.Complex!(double)* b,
  int ldb,
  ref int info
);