Files
matlab/RBM/UFLDL/common/randi.m
T
jens b8abc7cbb6 moved
git-svn-id: http://moon:8086/svn/matlab/trunk@92 801c6759-fa7c-4059-a304-17956f83a07c
2016-07-12 12:01:21 +00:00

10 lines
192 B
Matlab

function d = randi(range, numRows, numCol)
if length(range) == 2
s = range(2) - range(1);
off = range(1);
else
s = range;
off = 0;
end
d = fix(s*rand(numRows, numCol)+0.5) + off;