This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a=100;
b=120;
y_correct = [101 103 107 109 113];
assert(isequal(allprimes(a,b),y_correct))
ans =
101 103 107 109 113
|
2 | Pass |
a=140;
b=180;
y_correct = [149 151 157 163 167 173 179];
assert(isequal(allprimes(a,b),y_correct))
ans =
149 151 157 163 167 173 179
|
3 | Pass |
a=14;
b=20;
y_correct = [17 19];
assert(isequal(allprimes(a,b),y_correct))
ans =
17 19
|
Getting the indices from a matrice
266 Solvers
369 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
230 Solvers
291 Solvers
58 Solvers