This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n = 1;
y_correct = 1;
assert(isequal(q1(n),y_correct))
|
2 | Pass |
n = 2;
y_correct = 1;
assert(isequal(q1(n),y_correct))
|
3 | Pass |
n = 3;
y_correct = 3;
assert(isequal(q1(n),y_correct))
|
4 | Pass |
n = 4;
y_correct = 3;
assert(isequal(q1(n),y_correct))
|
5 | Pass |
n = 4.1;
y_correct = false;
assert(isequal(q1(n),y_correct))
|
6 | Pass |
n = 5;
y_correct = 15;
assert(isequal(q1(n),y_correct))
|
7 | Pass |
n = 6;
y_correct = 15;
assert(isequal(q1(n),y_correct))
|
The Hitchhiker's Guide to MATLAB
2874 Solvers
184 Solvers
63 Solvers
99 Solvers
Replace Negative(-) by 0 and positive by 1
74 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!