diff options
author | Patrick Simianer <p@simianer.de> | 2014-09-21 14:14:08 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-09-21 14:14:08 +0100 |
commit | 98da2a419ad77ed0aa0128f1c3074c512f466e24 (patch) | |
tree | 08ccb6a35440d59f879099564ddd7acfe93e5a35 | |
parent | 45761f29e0136a08869bef4d0db5296eeedd6e63 (diff) |
rm sample_n
-rwxr-xr-x | sample_n | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/sample_n b/sample_n deleted file mode 100755 index 286646b..0000000 --- a/sample_n +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env ruby - -require 'trollop' - - -opts = Trollop::options do - banner "sample --size <n> --population <n>" - opt :size, "Sample size (percentage).", :type => :int - opt :population, "'Population' (number \in N)", :type => :int -end - -prng = Random.new(Random.new_seed) -1.upto(opts[:population]) { |i| - puts i if prng.rand(1..opts[:size])==0 -} - |