.. _max: MAX === +----------+-------------------------------------------------------------------+ | Syntax | MAX (x\ :sup:`1` :sup:`\*`\ [,x\ :sup:`i`]\ :sup:`\*`) | +----------+-------------------------------------------------------------------+ | Location | Math Package, MINMAX2 | +----------+-------------------------------------------------------------------+ This function must be given at least one number as a parameter - it will then return the highest value out of the given list of parameters. **Example** :: PRINT MAX ( 2, 5, -10, 3.2 ) will print 5. **CROSS-REFERENCE** :ref:`min`. See also :ref:`maximum` and :ref:`matmax`.