Function stbcon_

Estimates the reciprocal of the condition number of a triangular band matrix, in either the 1-norm or the infinity-norm.

extern(C) void stbcon_ (
  char* norm,
  char* uplo,
  char* diag,
  int* n,
  int* kd,
  float* ab,
  int* ldab,
  float* rcond,
  float* work,
  int* iwork,
  int* info,
  int norm_len,
  int uplo_len,
  int diag_len
);