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