potrf - multiple declarations

Function potrf

Computes the Cholesky factorization of a symmetric positive definite matrix.

void potrf (
  char uplo,
  int n,
  float* a,
  int lda,
  ref int info
);

Function potrf

void potrf (
  char uplo,
  int n,
  double* a,
  int lda,
  ref int info
);

Function potrf

void potrf (
  char uplo,
  int n,
  std.complex.Complex!(float)* a,
  int lda,
  ref int info
);

Function potrf

void potrf (
  char uplo,
  int n,
  std.complex.Complex!(double)* a,
  int lda,
  ref int info
);