
{{alias}}( x, mask )
    Computes the minimum value of an array according to a mask, ignoring `NaN`
    values.

    If a `mask` array element is `0`, the corresponding element in `x` is
    considered valid and included in computation.

    If a `mask` array element is `1`, the corresponding element in `x` is
    considered invalid/missing and excluded from computation.

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

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

    mask: Array<number>|TypedArray
        Mask array.

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

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

    See Also
    --------

