Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 3:10;
y = 5.6;
[v,i] = nearVal(x,y);
assert(v == 6 && i == 4)
|
2 | Pass |
%%
x = [1 1000];
y = 5.6;
[v,i] = nearVal(x,y);
assert(v == 1 && i == 1)
|
3 | Pass |
%%
x = 1:500;
y = 3:3:9;
[v,i] = nearVal(x,y);
assert(all(v == y & i == y))
|
4 | Pass |
%%
x = 1;
y = 1:100;
[v,i] = nearVal(x,y);
assert(all(v == 1 & i == 1))
|
5 | Pass |
%%
x = (3:5).^2;
y = 6:16;
[v,i] = nearVal(x,y);
assert(isequal(v,[9 9 9 9 9 9 9 16 16 16 16]) && isequal(i,[1 1 1 1 1 1 1 2 2 2 2]))
|
Read a column of numbers and interpolate missing data
1235 Solvers
337 Solvers
147 Solvers
338 Solvers
2142 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!