Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
assessFunctionAbsence({'regexp','regexpi','regexprep','str2num'},'FileName','top5primes.m')
|
2 | Fail |
x = 1:10;
y_correct = [7 5 3 2 NaN];
assert(isequaln(top5primes(x),y_correct))
|
3 | Fail |
x = (1:2:100).';
y_correct = [97 89 83 79 73].';
assert(isequaln(top5primes(x),y_correct))
|
4 | Fail |
x = [17 6 3
13 8 17
1 2 5
5 3 7
7 11 2
31 7 6];
y_correct = [31 11 17
17 7 7
13 3 5
7 2 3
5 NaN 2];
assert(isequaln(top5primes(x),y_correct))
|
5 | Fail |
x = interp1(magic(30).',1:5).';
y_correct = [877 733 863 719 881
829 701 751 173 769
797 139 59 157 29
89 107 43 109 13
73 NaN 11 61 NaN];
assert(isequaln(top5primes(x),y_correct))
|
6 | Fail |
rng(0);
x = reshape(randperm(200,180),36,5);
y_correct = [163 181 173 197 193
71 179 149 191 157
23 167 113 139 151
19 131 101 83 137
NaN 109 67 73 127];
assert(isequaln(top5primes(x),y_correct))
|
3076 Solvers
Find relatively common elements in matrix rows
865 Solvers
Set some matrix elements to zero
290 Solvers
Number of digits in an integer
336 Solvers
266 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!