ilauplo#

Functions

INT ilauplo(
    const char* uplo
);
INT ilauplo(const char *uplo)#

This subroutine translated from a character string specifying a upper- or lower-triangular matrix to the relevant BLAST-specified integer constant.

Parameters

in
uplo

uplo='U': upper triangular. uplo='L': lower triangular.

Returns:

An integer. If the returned value <0, then the input is not a character indicating an upper- or lower-triangular matrix. Otherwise the constant value corresponding to uplo is returned: 121 (BLAS_UPPER) for uplo='U', 122 (BLAS_LOWER) for uplo='L'.