Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = -8.8;
y_correct = -8;
assert(isequal(round_zero(x),y_correct))
|
2 | Pass |
x = 8.8;
y_correct = 8;
assert(isequal(round_zero(x),y_correct))
|
3 | Pass |
x = 0.8;
y_correct = 0;
assert(isequal(round_zero(x),y_correct))
|
4 | Pass |
x = 0.4;
y_correct = 0;
assert(isequal(round_zero(x),y_correct))
|
5 | Pass |
x = 0;
y_correct = 0;
assert(isequal(round_zero(x),y_correct))
|
6 | Pass |
x = eps;
y_correct = 0;
assert(isequal(round_zero(x),y_correct))
|
7 | Pass |
x = pi;
y_correct = 3;
assert(isequal(round_zero(x),y_correct))
|
19334 Solvers
Sort a list of complex numbers based on far they are from the origin.
4327 Solvers
Compute a dot product of two vectors x and y
750 Solvers
Find out total non zero element of matrix
193 Solvers
Find out sum of all elements of given Matrix
349 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!