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)
|
Back to basics 13 - Input variables
233 Solvers
"Low : High - Low : High - Turn around " -- Create a subindices vector
320 Solvers
376 Solvers
Switch matrix to a column vector
260 Solvers
Fix the last element of a cell array
344 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!