pocon - multiple declarations

Function pocon

void pocon (
  char uplo,
  int n,
  std.complex.Complex!(double)* a,
  int lda,
  double* anorm,
  double rcond,
  std.complex.Complex!(double)* work,
  double* rwork,
  ref int info
);

Function pocon

void pocon (
  char uplo,
  int n,
  std.complex.Complex!(float)* a,
  int lda,
  float* anorm,
  float rcond,
  std.complex.Complex!(float)* work,
  float* rwork,
  ref int info
);

Function pocon

void pocon (
  char uplo,
  int n,
  double* a,
  int lda,
  double* anorm,
  double rcond,
  double* work,
  int* iwork,
  ref int info
);

Function pocon

Estimates the reciprocal of the condition number of a symmetric positive definite matrix, using the Cholesky factorization computed by SPOTRF.

void pocon (
  char uplo,
  int n,
  float* a,
  int lda,
  float* anorm,
  float rcond,
  float* work,
  int* iwork,
  ref int info
);