
{{alias}}( σ )
    Returns the skewness of a Rayleigh distribution.

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

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

    Parameters
    ----------
    σ: number
        Scale parameter.

    Returns
    -------
    out: number
        Skewness.

    Examples
    --------
    > var v = {{alias}}( 11.0 )
    ~0.631
    > v = {{alias}}( 4.5 )
    ~0.631

    See Also
    --------

