
{{alias}}( arrays )
    Computes the minimum value of a double-precision floating-point ndarray
    according to a mask, ignoring `NaN` values.

    If provided an empty ndarray or a mask with all elements set to `1`, the
    function returns `NaN`.

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

        - a one-dimensional input ndarray.
        - a one-dimensional mask ndarray.

    Returns
    -------
    out: number
        Minimum value.

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

    See Also
    --------

