function str = UCText2LCText(STR) % STR = LCText2UCText(str) % Input: STR = a string of Upper Case (alphabet: A, B, ..., Z) % Output: str = corresponding string in Lower Case text (alphabet: a, b, ..., z) str = Int2LCText(UCText2Int(STR));