Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [4 4 4 4];
p_correct = [0 0 0 1];
assert(isequal(prob_table(x),p_correct))
|
2 | Pass |
%%
x = [1 2 1 2 1 2 1 2 1 2];
p_correct = [0.5 0.5];
assert(isequal(prob_table(x),p_correct))
|
3 | Pass |
%%
x = [1 1 2 8];
p_correct = [0.5 0.25 0 0 0 0 0 0.25];
assert(isequal(prob_table(x),p_correct))
|
4 | Pass |
%%
x = 1:100;
p_correct = 0.01*ones(1,100);
assert(isequal(prob_table(x),p_correct))
|
951 Solvers
Vectorize the digits of an Integer
269 Solvers
253 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
Spot the First Occurrence of 5
365 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!