
{{alias}}( λ )
    Returns the variance of a Planck distribution with shape parameter `λ`.

    If `λ <= 0`, the function returns `NaN`.

    Parameters
    ----------
    λ: number
        Shape parameter.

    Returns
    -------
    out: number
        Variance.

    Examples
    --------
    > var v = {{alias}}( 0.1 )
    ~99.9167
    > v = {{alias}}( 1.5 )
    ~0.3697

    See Also
    --------

