Function cupmtr_

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

extern(C) void cupmtr_ (
  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,
  int* info,
  int side_len,
  int uplo_len,
  int trans_len
);