upper
Convert string to uppercase.
Syntax
Section titled “Syntax”t = upper(str)Description
Section titled “Description”Returns str with all lowercase characters converted to uppercase. Other characters are unchanged. Applied elementwise to character arrays.
Example
Section titled “Example”upper('Hello World') % 'HELLO WORLD'