Function sgetrs_

Solves a general system of linear equations AX=B, A**T X=B or A**H X=B, using the LU factorization computed by SGETRF.

extern(C) void sgetrs_ (
  char* trans,
  int* n,
  int* nrhs,
  float* a,
  int* lda,
  int* ipiv,
  float* b,
  int* ldb,
  int* info,
  int trans_len
);