
{{alias}}( k )
    Returns the differential entropy of a chi-squared distribution (in nats).

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

    If provided `k < 0`, the function returns `NaN`.

    Parameters
    ----------
    k: number
        Degrees of freedom.

    Returns
    -------
    out: number
        Entropy.

    Examples
    --------
    > var v = {{alias}}( 11.0 )
    ~2.901
    > v = {{alias}}( 1.5 )
    ~1.375

    See Also
    --------

