toupper
Upper case conversion.
📝Syntax
res = toupper(str)
📥Input Arguments
Parameter Description
str a row character array, a cell of strings or an string array.
📤Output Arguments
Parameter Description
res a string upper case
📄Description

toupper converts a string to upper case.

💡Examples
toupper('NelSon')
upper(["NelSon", "is", "open"])
🔗See Also
tolower
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub