0% found this document useful (0 votes)
31 views3 pages

Class 3 B: Students Names

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views3 pages

Class 3 B: Students Names

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Ministry Of Higher Education

Northern Technical University


Technical College /Mosul
Department Of Medical Instruments techniques

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.

In this report, we will explain lower instruction of this language.

lower

lowercase Sometimes abbreviated as LC, lowercase is a typeface of small


characters. For example, a, b, and c is lowercase and A, B, and C is uppercase.

In this instruction we will convert any uppercase letters to lowercase letters.

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.

Convert a string array to contain lowercase characters.

str = ["The SOONER,";"the BETTER."]

str = 2x1 string


"The SOONER,"
"the BETTER."

newStr = lower(str)

newStr = 2x1 string


"the sooner,"
"the better."

Conclusion
For character arrays, the lower function supports only the character sets:

 PC: Windows® Latin-1


 Other: ISO® Latin-1 (ISO 8859-1)
For string arrays, the lower function supports Unicode®.

References

 https://www.mathworks.com/help/matlab/ref/lower.html

You might also like