sycon - multiple declarations

Function sycon

Estimates the reciprocal of the condition number of a real symmetric indefinite matrix, using the factorization computed by SSYTRF.

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

Function sycon

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

Function sycon

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

Function sycon

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