gbcon - multiple declarations

Function gbcon

Estimates the reciprocal of the condition number of a general band matrix, in either the 1-norm or the infinity-norm, using the LU factorization computed by SGBTRF.

void gbcon (
  char norm,
  int n,
  int kl,
  int ku,
  float* ab,
  int ldab,
  int* ipiv,
  float* anorm,
  float rcond,
  float* work,
  int* iwork,
  ref int info
);

Function gbcon

void gbcon (
  char norm,
  int n,
  int kl,
  int ku,
  double* ab,
  int ldab,
  int* ipiv,
  double* anorm,
  double rcond,
  double* work,
  int* iwork,
  ref int info
);

Function gbcon

void gbcon (
  char norm,
  int n,
  int kl,
  int ku,
  std.complex.Complex!(float)* ab,
  int ldab,
  int* ipiv,
  float* anorm,
  float rcond,
  std.complex.Complex!(float)* work,
  float* rwork,
  ref int info
);

Function gbcon

void gbcon (
  char norm,
  int n,
  int kl,
  int ku,
  std.complex.Complex!(double)* ab,
  int ldab,
  int* ipiv,
  double* anorm,
  double rcond,
  std.complex.Complex!(double)* work,
  double* rwork,
  ref int info
);