Normalize Command
This command differs among variants of English:
|
- Normalize( <List of Numbers> )
-
Returns a list containing the normalized form of the given numbers.
Normalize({1, 2, 3, 4, 5})
returns {0, 0.25, 0.5, 0.75, 1}.
- Normalize( <List of Points> )
-
Returns a list containing the normalized form of the given points.
Normalize({(1,5), (2,4), (3,3), (4,2), (5,1)})
returns {(0,1), (0.25,0.75), (0.5,0.5), (0.75,0.25), (1,0)}.
|