Difference between revisions of "AMAX()"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
Line 1: | Line 1: | ||
==Class== | ==Class== | ||
− | + | Array Processing | |
==Purpose== | ==Purpose== | ||
− | Function to | + | Function to return the highest element value in an array |
==Syntax== | ==Syntax== | ||
− | + | AMAX(<array>) | |
==See Also== | ==See Also== | ||
− | [[ | + | [[AADD()]], [[AAVERAGE()]], [[ABROWSE()]], [[ACHOICE()]], [[ACOL()]], [[ACOPY()]], [[ADEL()]], [[ADESC()]], [[ADIR()]], [[AELEMENT()]], [[AFIELDS()]], [[AFILL()]], [[AINS()]], [[ALEN()]], [[AMIN()]], [[APPEND FROM ARRAY]], [[AROW()]], [[ASCAN()]], [[ASIZE()]], [[ASORT()]], [[ASTORE()]], [[ASTRING()]], [[ASUBSCRIPT()]], [[ASUM()]], [[COPY TO ARRAY]], [[DECLARE]], [[DIMENSION]], [[GATHER]], [[LOCAL]], [[PRIVATE]], [[PUBLIC]], [[RELEASE]], [[RESTORE]], [[SAVE]], [[SCATTER]] |
==Description== | ==Description== | ||
− | The | + | The AMAX() function evaluates all the numeric elements in the specified <array> and returns the highest value. |
− | + | ||
− | + | ||
− | + | ||
==Example== | ==Example== | ||
<code lang="recital"> | <code lang="recital"> | ||
− | + | use payroll | |
− | + | declare number[reccount(),1] | |
− | + | copy to array number fields total | |
− | + | ? amax(number) | |
− | + | 8165.19 | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
</code> | </code> | ||
Revision as of 11:01, 24 March 2009
Class
Array Processing
Purpose
Function to return the highest element value in an array
Syntax
AMAX(<array>)
See Also
AADD(), AAVERAGE(), ABROWSE(), ACHOICE(), ACOL(), ACOPY(), ADEL(), ADESC(), ADIR(), AELEMENT(), AFIELDS(), AFILL(), AINS(), ALEN(), AMIN(), APPEND FROM ARRAY, AROW(), ASCAN(), ASIZE(), ASORT(), ASTORE(), ASTRING(), ASUBSCRIPT(), ASUM(), COPY TO ARRAY, DECLARE, DIMENSION, GATHER, LOCAL, PRIVATE, PUBLIC, RELEASE, RESTORE, SAVE, SCATTER
Description
The AMAX() function evaluates all the numeric elements in the specified <array> and returns the highest value.
Example
use payroll declare number[reccount(),1] copy to array number fields total ? amax(number) 8165.19
Products
Recital Database Server, Recital Mirage Server, Recital Terminal Developer