Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
lowVal = 10;
highVal = 50;
p = [11 13
17 19
29 31
41 43];
assert(isequal(window_twins(lowVal,highVal),p))
|
2 | Pass |
%%
lowVal = 1000;
highVal = 1050;
p = [1019 1021
1031 1033];
assert(isequal(window_twins(lowVal,highVal),p))
|
3 | Pass |
%%
lowVal = 3120;
highVal = 3300;
p = [ 3167 3169
3251 3253
3257 3259];
assert(isequal(window_twins(lowVal,highVal),p))
|
Sum all integers from 1 to 2^n
8419 Solvers
Return unique values without sorting
588 Solvers
Getting the indices from a matrice
360 Solvers
Who has power to do everything in this world?
318 Solvers
Back to basics - mean of corner elements of a matrix
297 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!