114
Chapter 7: List Features
8 aug…(
augment(
list 1, list 2)
Returns a list appending the specified lists.
Example
• Obtain the list appending L1 ({4, 2,
7}) and L2 ({
-
1,
-
3,
-
4}).
Calculations using MATH Menus
During the following explanations, the values of lists, L1 and L2 will be assumed to be:
L1 = {2, 8,
-
4}
L2 = {
-
3,
-
4,
-
1}
1 min(
min(
list)
Returns the minimum value in the list.
Example
• Calculate the minimum value of the
list L1.
2 max(
max(
list)
Returns the maximum value in the list.
Example
• Calculate the maximum value of the specified list L2.
Note:
min(
list 1, list 2)
max(
list 1, list 2)
If two lists are specified in parenthesis
separated by a comma, then a list
consisting of minimum (or maximum)
values is returned.