time-to-botec/js/node_modules/@stdlib/stats/base/dists/pareto-type1/kurtosis/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

34 lines
576 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{{alias}}( α, β )
Returns the excess kurtosis of a Pareto (Type I) distribution.
If `α <= 4` or `β <= 0`, the function returns `NaN`.
If `α` or `β` is `NaN`, the function returns `NaN`.
Parameters
----------
α: number
Shape parameter.
β: number
Scale parameter.
Returns
-------
out: number
Excess kurtosis.
Examples
--------
> var v = {{alias}}( 5.0, 1.0 )
~70.8
> v = {{alias}}( 4.5, 12.0 )
~146.444
> v = {{alias}}( 8.0, 2.0 )
~19.725
See Also
--------