gtcon - multiple declarations

Function gtcon

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

void gtcon (
  char norm,
  int n,
  float* dl,
  float* d,
  float* du,
  float* du2,
  int* ipiv,
  float* anorm,
  float rcond,
  float* work,
  int* iwork,
  ref int info
);

Function gtcon

void gtcon (
  char norm,
  int n,
  double* dl,
  double* d,
  double* du,
  double* du2,
  int* ipiv,
  double* anorm,
  double rcond,
  double* work,
  int* iwork,
  ref int info
);

Function gtcon

void gtcon (
  char norm,
  int n,
  std.complex.Complex!(float)* dl,
  std.complex.Complex!(float)* d,
  std.complex.Complex!(float)* du,
  std.complex.Complex!(float)* du2,
  int* ipiv,
  float* anorm,
  float rcond,
  std.complex.Complex!(float)* work,
  ref int info
);

Function gtcon

void gtcon (
  char norm,
  int n,
  std.complex.Complex!(double)* dl,
  std.complex.Complex!(double)* d,
  std.complex.Complex!(double)* du,
  std.complex.Complex!(double)* du2,
  int* ipiv,
  double* anorm,
  double rcond,
  std.complex.Complex!(double)* work,
  ref int info
);