Function sbdsdc_

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

extern(C) void sbdsdc_ (
  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,
  int* info,
  int uplo_len,
  int compq_len
);