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))
ans =
0 0 0 1
|
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))
ans =
0.5000 0.5000
|
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))
ans =
0.5000 0.2500 0 0 0 0 0 0.2500
|
4 | Pass |
x = 1:100;
p_correct = 0.01*ones(1,100);
assert(isequal(prob_table(x),p_correct))
ans =
Columns 1 through 17
0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100
Columns 18 through 34
0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100
Columns 35 through 51
0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100
Columns 52 through 68
0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100
Columns 69 through 85
0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100
Columns 86 through 100
0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100 0.0100
|
Return the largest number that is adjacent to a zero
3751 Solvers
5704 Solvers
2197 Solvers
Get the area codes from a list of phone numbers
532 Solvers
1223 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!