
{{alias}}( x )
    Computes the maximum absolute value of an array.

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

    Parameters
    ----------
    x: Array<number>|TypedArray
        Input array.

    Returns
    -------
    out: number
        Maximum absolute value.

    Examples
    --------
    > var x = [ 1.0, -2.0, 2.0 ];
    > {{alias}}( x )
    2.0

    See Also
    --------

