ormqr - multiple declarations

Function ormqr

Multiplies a general matrix by the orthogonal matrix from a QR factorization determined by SGEQRF.

void ormqr (
  char side,
  char trans,
  int m,
  int n,
  int k,
  float* a,
  int lda,
  float* tau,
  float* c,
  int ldc,
  float* work,
  int lwork,
  ref int info
);

Function ormqr

void ormqr (
  char side,
  char trans,
  int m,
  int n,
  int k,
  double* a,
  int lda,
  double* tau,
  double* c,
  int ldc,
  double* work,
  int lwork,
  ref int info
);