Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
a = [1, 5, 3, 0, 2, 7, 0, 8, 9, 1 0];
b = 8;
assert(isequal(nearZero(a),b))
x =
1 1 5 3 0 2 7 0 8 9 1 0
x =
NaN 1 5 3 0 2 7 0 8 9 1 0
ans =
8
|
2 | Pass |
%%
a = [5 4 -1 0 -2 0 -5 8];
b = -1;
assert(isequal(nearZero(a),b));
x =
5 5 4 -1 0 -2 0 -5 8
x =
NaN 5 4 -1 0 -2 0 -5 8
ans =
-1
|
3 | Pass |
%%
a = [0 3 1 0 2 9];
b = 3;
assert(isequal(nearZero(a),b));
x =
0 0 3 1 0 2 9
x =
NaN 0 3 1 0 2 9
ans =
3
|
4 | Pass |
%%
a = [1 0 2 0 3];
b = 3;
assert(isequal(nearZero(a),b));
x =
1 1 0 2 0 3
x =
NaN 1 0 2 0 3
ans =
3
|
5 | Pass |
%%
a = [0 -1];
b = -1;
assert(isequal(nearZero(a),b));
x =
0 0 -1
x =
NaN 0 -1
ans =
-1
|
6 | Pass |
%%
a = [0 -12 0 -7 0];
b = -7;
assert(isequal(nearZero(a),b));
x =
0 0 -12 0 -7 0
x =
NaN 0 -12 0 -7 0
ans =
-7
|
733 Solvers
Project Euler: Problem 7, Nth prime
522 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
298 Solvers
Convert from Fahrenheit to Celsius
7183 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!