Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
a = [1, 5, 3, 0, 2, 7, 0, 8, 9, 1 0];
b = 8;
assert(isequal(nearZero(a),b))
Error: Undefined function 'smooth' for input arguments of type 'double'.
|
2 | Fail |
%%
a = [5 4 -1 0 -2 0 -5 8];
b = -1;
assert(isequal(nearZero(a),b));
Error: Undefined function 'smooth' for input arguments of type 'double'.
|
3 | Fail |
%%
a = [0 3 1 0 2 9];
b = 3;
assert(isequal(nearZero(a),b));
Error: Undefined function 'smooth' for input arguments of type 'double'.
|
4 | Fail |
%%
a = [1 0 2 0 3];
b = 3;
assert(isequal(nearZero(a),b));
Error: Undefined function 'smooth' for input arguments of type 'double'.
|
5 | Fail |
%%
a = [0 -1];
b = -1;
assert(isequal(nearZero(a),b));
Error: Undefined function 'smooth' for input arguments of type 'double'.
|
6 | Fail |
%%
a = [0 -12 0 -7 0];
b = -7;
assert(isequal(nearZero(a),b));
Error: Undefined function 'smooth' for input arguments of type 'double'.
|
17121 Solvers
284 Solvers
Create a square matrix of multiples
383 Solvers
Get the length of a given vector
3559 Solvers
2981 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!