
{{alias}}( x, α, β )
    Evaluates the natural logarithm of the probability density function (PDF)
    for a Pareto (Type I) distribution with shape parameter `α` and scale
    parameter `β` at a value `x`.

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

    If `α <= 0` or `β <= 0`, the function returns `NaN`.

    Parameters
    ----------
    x: number
        Input value.

    α: number
        Shape parameter.

    β: number
        Scale parameter.

    Returns
    -------
    out: number
        Evaluated logPDF.

    Examples
    --------
    > var y = {{alias}}( 4.0, 1.0, 1.0 )
    ~-2.773
    > y = {{alias}}( 20.0, 1.0, 10.0 )
    ~-3.689
    > y = {{alias}}( 7.0, 2.0, 6.0 )
    ~-1.561
    > y = {{alias}}( 7.0, 6.0, 3.0 )
    ~-5.238
    > y = {{alias}}( 1.0, 4.0, 2.0 )
    -Infinity
    > y = {{alias}}( 1.5, 4.0, 2.0 )
    -Infinity

    > y = {{alias}}( 0.5, -1.0, 0.5 )
    NaN
    > y = {{alias}}( 0.5, 0.5, -1.0 )
    NaN

    > y = {{alias}}( NaN, 1.0, 1.0 )
    NaN
    > y = {{alias}}( 0.5, NaN, 1.0 )
    NaN
    > y = {{alias}}( 0.5, 1.0, NaN )
    NaN


{{alias}}.factory( α, β )
    Returns a function for evaluating the natural logarithm of the probability
    density function (PDF) of a Pareto (Type I) distribution with shape
    parameter `α` and scale parameter `β`.

    Parameters
    ----------
    α: number
        Shape parameter.

    β: number
        Scale parameter.

    Returns
    -------
    logpdf: Function
        Logarithm of probability density function (PDF).

    Examples
    --------
    > var mylogPDF = {{alias}}.factory( 0.5, 0.5 );
    > var y = mylogPDF( 0.8 )
    ~-0.705
    > y = mylogPDF( 2.0 )
    ~-2.079

    See Also
    --------

