bdsdc - multiple declarations

Function bdsdc

Computes the singular value decomposition (SVD) of a real bidiagonal matrix, using a divide and conquer method.

void bdsdc (
  char uplo,
  char compq,
  int n,
  float* d,
  float* e,
  float* u,
  int ldu,
  float* vt,
  int ldvt,
  float* q,
  int iq,
  float* work,
  int* iwork,
  ref int info
);

Function bdsdc

void bdsdc (
  char uplo,
  char compq,
  int n,
  double* d,
  double* e,
  double* u,
  int ldu,
  double* vt,
  int ldvt,
  double* q,
  int iq,
  double* work,
  int* iwork,
  ref int info
);