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]))
|
Remove all the words that end with "ain"
1292 Solvers
Find the "ordinary" or Euclidean distance between A and Z
137 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
3062 Solvers
Do Fast Fourier Transformation
221 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!