Query: lsame
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
LSAME(3) LAPACK auxiliary routine (version 1.0) LSAME(3) LSAME(3) BLAS routine LSAME(3)NAMELSAME - return .TRUESYNOPSISLOGICAL FUNCTION LSAME( CA, CB ) CHARACTER CA, CBPURPOSELSAME returns .TRUE. if CA is the same letter as CB regardless of case.ARGUMENTSCA (input) CHARACTER*1 CB (input) CHARACTER*1 CA and CB specify the single characters to be compared. Test if the characters are equal Now test for equivalence if both characters are alphabetic. Use 'Z' rather than 'A' so that ASCII can be detected on Prime machines, on which ICHAR returns a value with bit 8 set. ICHAR('A') on Prime machines returns 193 which is the same as ICHAR('A') on an EBCDIC machine. ASCII is assumed - ZCODE is the ASCII code of either lower or upper case 'Z'. EBCDIC is assumed - ZCODE is the EBCDIC code of either lower or upper case 'Z'. ASCII is assumed, on Prime machines - ZCODE is the ASCII code plus 128 of either lower or upper case 'Z'. RETURN End of LSAME BLAS routine 16 October 1992 LSAME(3)
Related Man Pages |
---|
ctpsv(l) - redhat |
ctrsv(l) - redhat |
dtpsv(l) - redhat |
strsv(l) - redhat |
ztrsv(l) - redhat |
Similar Topics in the Unix Linux Community |
---|
how to generate a random list from a given list |
perform a check based on number of @ in a log line |