ormrq - multiple declarations

Function ormrq

Multiplies a general matrix by the orthogonal matrix from an RQ factorization determined by SGERQF.

void ormrq (
  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 ormrq

void ormrq (
  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
);