
{{alias}}( λ )
    Returns the median of a Poisson distribution.

    If provided `NaN` as any argument, the function returns `NaN`.

    If provided a negative value for `λ`, the function returns `NaN`.

    Parameters
    ----------
    λ: number
        Mean parameter.

    Returns
    -------
    out: integer
        Median.

    Examples
    --------
    > var v = {{alias}}( 11.0 )
    11
    > v = {{alias}}( 4.5 )
    4

    See Also
    --------

