D (function)
Jump to navigation
Jump to search
| d(n,x) | |
|---|---|
File:Dfunction.png Probability mass function of d(3,6). | |
| Distribution | normal (if n > 1) |
| Mean |
|
| Standard deviation |
|
d(n,x)[1] is a pseudo-random number function used in NetHack to simulate the rolling of multiple dice. The range of values is between n and n*x inclusive (that is, n ≤ d(n,x) ≤ n*x). It is equivalent to ndx in D notation, or rolling n independent dice with x sides each and summing the results.
References
- ↑ src/rnd.c in NetHack 3.6.7, line 176: function d
- This page is a stub. Should you wish to do so, you can contribute by expanding this page.