about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMtools/sampleUniformInts.m
blob: d4c6c1a4e40a31f972fbf767417f3a26ebf0c6b9 (plain)
1
2
3
4
5
6
function M = sampleUniformInts(N, r, c)

% M is an rxc matrix of integers in 1..N

prob = normalize(ones(N,1));
M = sample_discrete(prob, r, c);