
{{alias}}( arrays )
    Computes the cumulative maximum value of a one-dimensional single-precision
    floating-point ndarray.

    If provided an empty input ndarray, the function returns the output ndarray
    unchanged.

    Parameters
    ----------
    arrays: ArrayLikeObject<ndarray>
        Array-like object containing the following ndarrays:

        - a one-dimensional input ndarray.
        - a one-dimensional output ndarray.

    Returns
    -------
    out: ndarray
        Output ndarray.

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

    See Also
    --------

