upmtr - multiple declarations

Function upmtr

Multiplies a general matrix by the unitary transformation matrix from a reduction to tridiagonal form determined by CHPTRD.

void upmtr (
  char side,
  char uplo,
  char trans,
  int m,
  int n,
  std.complex.Complex!(float)* ap,
  std.complex.Complex!(float)* tau,
  std.complex.Complex!(float)* c,
  int ldc,
  std.complex.Complex!(float)* work,
  ref int info
);

Function upmtr

void upmtr (
  char side,
  char uplo,
  char trans,
  int m,
  int n,
  std.complex.Complex!(double)* ap,
  std.complex.Complex!(double)* tau,
  std.complex.Complex!(double)* c,
  int ldc,
  std.complex.Complex!(double)* work,
  ref int info
);