Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 3;
y_correct = 1/3;
assert(isequal(redT(x),y_correct))
ans =
0.1667
|
2 | Fail |
x = 5;
y_correct = 1/10;
assert(isequal(redT(x),y_correct))
ans =
0.0500
|
3 | Fail |
x= 8;
y_correct = 1/28;
assert(isequal(redT(x),y_correct))
ans =
0.0179
|
4 | Fail |
x= 30;
y_correct = 1/435;
assert(isequal(redT(x),y_correct))
ans =
0.0011
|
Increment a number, given its digits
562 Solvers
501 Solvers
Set some matrix elements to zero
290 Solvers
219 Solvers
137 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!