Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% test #1
x = [1:1:5];
a = 4.3;
y_correct = 4;
assert(isequal(nearestNumber(x,a),y_correct))
ans =
4
|
2 | Pass |
%% test #2
x = [2 4 5 6 8 10];
a = 4.6;
y_correct = 5;
assert(isequal(nearestNumber(x,a),y_correct))
ans =
5
|
3 | Pass |
%% test #3
x = [-2 -3 -1 0];
a = -3.1;
y_correct = -3;
assert(isequal(nearestNumber(x,a),y_correct))
ans =
-3
|
2183 Solvers
Find the peak 3n+1 sequence value
1108 Solvers
Count from 0 to N^M in base N.
220 Solvers
Check to see if a Sudoku Puzzle is Solved
279 Solvers
248 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!