
{{alias}}( arrays )
    Computes the median value of a sorted one-dimensional double-precision
    floating-point ndarray.

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

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

    Returns
    -------
    out: number
        Median value.

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

    See Also
    --------

