Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 3;
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
out =
3
|
2 | Pass |
%%
x = [1 2 3];
y_correct = 2.5;
assert(isequal(meanOfPrimes(x),y_correct))
out =
2.5000
|
3 | Pass |
%%
x = [3 3; 3 3];
y_correct = 3;
assert(isequal(meanOfPrimes(x),y_correct))
out =
3
|
4 | Pass |
%%
x = [7 3 8 8]';
y_correct = 5;
assert(isequal(meanOfPrimes(x),y_correct))
out =
5
|
17222 Solvers
Remove the two elements next to NaN value
411 Solvers
377 Solvers
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
292 Solvers
Matlab Basics - y as a function of x
339 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!