
{{alias}}( arrays )
    Computes the arithmetic mean of a one-dimensional single-precision floating-
    point ndarray using a one-pass trial mean algorithm with pairwise summation.

    If provided an empty ndarray, the function returns `NaN`.

    Parameters
    ----------
    arrays: ArrayLikeObject<ndarray>
        Array-like object containing a one-dimensional input ndarray.

    Returns
    -------
    out: number
        Arithmetic mean.

    Examples
    --------
    > var x = new {{alias:@stdlib/ndarray/vector/float32}}( [ 1.0, -2.0, 2.0 ] );
    > {{alias}}( [ x ] )
    ~0.3333

    See Also
    --------

