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]))
|
Swap the first and last columns
12408 Solvers
Remove the polynomials that have positive real elements of their roots.
629 Solvers
102 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
432 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!