diff options
-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 -} - |