Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 3;
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
out =
logical
1
out =
3
|
2 | Pass |
x = [1 2 3];
y_correct = 2.5;
assert(isequal(meanOfPrimes(x),y_correct))
out =
1×3 logical array
0 1 1
out =
2.5000
|
3 | Pass |
x = [3 3; 3 3];
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
out =
2×2 logical array
1 1
1 1
out =
3
|
4 | Pass |
x = [7 3 8 8]';
y_correct = 5;
assert(isequal(meanOfPrimes(x),y_correct))
out =
4×1 logical array
1
1
0
0
out =
5
|
2515 Solvers
Set some matrix elements to zero
228 Solvers
The Answer to Life, the Universe, and Everything
312 Solvers
369 Solvers
276 Solvers