Class 3 B: Students Names
Class 3 B: Students Names
Report Of :-
Students Names
Ahmed Mutasim
Supervised By
Dr. Rayed Al-Noaemy
Class 3rd B
2020----------------------------------------------------1441
Introduction
MATLAB is an interactive program for numerical computation and data
visualization. You can enter a command by typing it at the MATLAB prompt
'>>' on the Command Window.
lower
Syntax
newStr = lower(str)
Description
newStr = lower(str) converts all uppercase characters in str to the
corresponding lowercase characters and leaves all other characters
unchanged.
Examples
Convert Character Vector to Lowercase
Try This Example
lower('Hello, World.')
ans =
'hello, world.'
1
Convert String Array to Lowercase
Try This Example
Starting in R2017a, you can create string arrays using double quotes.
newStr = lower(str)
Conclusion
For character arrays, the lower function supports only the character sets:
References
https://www.mathworks.com/help/matlab/ref/lower.html