numtools

perform numerical operations on vectors and matrices in unix pipes
git clone git://src.adamsgaard.dk/numtools # fast
git clone https://src.adamsgaard.dk/numtools.git # slow
Log | Files | Refs | README | LICENSE Back to index

commit 6dc4672992e5dd74f76adfbf749249bf833340ad
parent eee7dc3aa251a41e11fb589c1d49427bf44cfb6b
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Thu,  5 May 2022 12:49:46 +0200

randcounts.1: minor rewording

Diffstat:
Mrandcounts.1 | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/randcounts.1 b/randcounts.1 @@ -38,14 +38,14 @@ Seed the pseudo-random number generator with this value, which is used to generate reproducable binning. .El .Sh EXAMPLES -Put one point in 4 bins with equal probability (25%). +Put one point in four bins with equal probability (25%). Due to the randomness, your output may differ: .Pp .Dl $ randcounts 0.25 0.25 0.25 0.25 .Pp .Dl 0 1 0 0 .Pp -Put 100 point in two bins, with 75% and 25% probability, respectively: +Put 100 point in two bins with 75% and 25% probability, respectively: .Pp .Dl $ randcounts -n 100 0.75 0.25 .Dl 78 22