NAME
    avg - arithmetic mean of values

SYNOPSIS
    avg(x, ...)

TYPES
    x		real, complex, matrix

    return	(same type as x)

DESCRIPTION
    Return the arithmetic mean of the arguments.  If the

EXAMPLE
    > print abs(3.4), abs(-3.4)
    3.4 3.4

    > print abs(3+4i), abs(4+5i), abs(4+5i, 0.1)
    5 ~6.40312423743284868648 6.40234375

    > mat x[2,2] = {1,2,3,4}
    > mat y[2,2] = {1,2,4,8}
    > avg(x,y)

    mat [2,2] (4 elements, 4 nonzero):
      [0,0] = 1
      [0,1] = 2
      [1,0] = 3.5
      [1,1] = 6

LIMITS
    none

LIBRARY
    none

SEE ALSO
    hmean
