my second ever pseudo random number generator (the first wasn't very random) http://en.wikipedia.org/wiki/Linear_congruential_generator
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x1 = zeros(1,6000);
x2 = zeros(1,6000);
for ii = 1:6000
[x1(ii),x2(ii)] = rollDice();
end
numCt = sum( bsxfun( @eq, x1, (1:6)' ), 2 ) + sum( bsxfun( @eq, x2, (1:6)' ), 2 );
assert(all(round(numCt/200) == 10) && sum(numCt) == 12000)
|
Find relatively common elements in matrix rows
645 Solvers
Replace NaNs with the number that appears to its left in the row.
1711 Solvers
2935 Solvers
Getting the row and column location from a matrix
192 Solvers
1780 Solvers