ormtr - multiple declarations

Function ormtr

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

Function ormtr

Multiplies a general matrix by the orthogonal transformation matrix from a reduction to tridiagonal form determined by SSYTRD.

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