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 | Fail |
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 | Fail |
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]))
|
657 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
Magic is simple (for beginners)
2754 Solvers
3067 Solvers
117 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!