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))
nonzd =
0
0
0
1
1
0
1
1
0
0
1
idx =
11×1 logical array
0
0
1
1
1
1
1
1
0
1
1
sx =
3
2
7
8
1
y =
8
|
2 | Pass |
a = [5 4 -1 0 -2 0 -5 8];
b = -1;
assert(isequal(nearZero(a),b));
nonzd =
0
0
0
1
1
1
1
0
idx =
8×1 logical array
0
0
1
1
1
1
1
0
sx =
-1
-2
-5
y =
-1
|
3 | Pass |
a = [0 3 1 0 2 9];
b = 3;
assert(isequal(nearZero(a),b));
nonzd =
1
1
0
1
1
0
idx =
6×1 logical array
1
1
1
1
1
0
sx =
3
1
2
y =
3
|
4 | Pass |
a = [1 0 2 0 3];
b = 3;
assert(isequal(nearZero(a),b));
nonzd =
1
1
1
1
1
idx =
5×1 logical array
1
1
1
1
1
sx =
1
2
3
y =
3
|
5 | Pass |
a = [0 -1];
b = -1;
assert(isequal(nearZero(a),b));
nonzd =
1
1
idx =
2×1 logical array
1
1
sx =
-1
y =
-1
|
6 | Pass |
a = [0 -12 0 -7 0];
b = -7;
assert(isequal(nearZero(a),b));
nonzd =
1
1
1
1
1
idx =
5×1 logical array
1
1
1
1
1
sx =
-12
-7
y =
-7
|
2539 Solvers
238 Solvers
573 Solvers
Who has power to do everything in this world?
318 Solvers
484 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!