laqhb#
Functions
-
void claqhb(const char *uplo, const INT n, const INT kd, c64 *restrict AB, const INT ldab, const f32 *restrict S, const f32 scond, const f32 amax, char *equed)#
CLAQHB equilibrates a Hermitian band matrix A using the scaling factors in the vector S.
Parameters
inuplo= ‘U’: Upper triangular = ‘L’: Lower triangular
innThe order of the matrix A. n >= 0.
inkdThe number of super-diagonals (if uplo=’U’) or sub-diagonals (if uplo=’L’). kd >= 0.
inoutABThe banded matrix A. On exit, the scaled matrix if EQUED=’Y’. Array of dimension (ldab, n).
inldabThe leading dimension of AB. ldab >= kd+1.
inSThe scale factors for A. Array of dimension (n).
inscondRatio of smallest to largest S(i).
inamaxAbsolute value of largest matrix entry.
outequed= ‘N’: No equilibration = ‘Y’: Equilibration was done
void claqhb(
const char* uplo,
const INT n,
const INT kd,
c64* restrict AB,
const INT ldab,
const f32* restrict S,
const f32 scond,
const f32 amax,
char* equed
);
Functions
-
void zlaqhb(const char *uplo, const INT n, const INT kd, c128 *restrict AB, const INT ldab, const f64 *restrict S, const f64 scond, const f64 amax, char *equed)#
ZLAQHB equilibrates a Hermitian band matrix A using the scaling factors in the vector S.
Parameters
inuplo= ‘U’: Upper triangular = ‘L’: Lower triangular
innThe order of the matrix A. n >= 0.
inkdThe number of super-diagonals (if uplo=’U’) or sub-diagonals (if uplo=’L’). kd >= 0.
inoutABThe banded matrix A. On exit, the scaled matrix if EQUED=’Y’. Array of dimension (ldab, n).
inldabThe leading dimension of AB. ldab >= kd+1.
inSThe scale factors for A. Array of dimension (n).
inscondRatio of smallest to largest S(i).
inamaxAbsolute value of largest matrix entry.
outequed= ‘N’: No equilibration = ‘Y’: Equilibration was done
void zlaqhb(
const char* uplo,
const INT n,
const INT kd,
c128* restrict AB,
const INT ldab,
const f64* restrict S,
const f64 scond,
const f64 amax,
char* equed
);