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))
|
1763 Solvers
Back to basics 13 - Input variables
233 Solvers
Duplicate each element of a vector.
518 Solvers
Output any real number that is neither positive nor negative
316 Solvers
Celsius to Fahrenheit converter
388 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!