Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1];
y_correct = [1 0];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [1 2 3 4 5 6];
y_correct =[ 1 0 2 0 3 0 4 0 5 0 6 0];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = 1:10;
y_correct =[ 1 0 2 0 3 0 4 0 5 0 6 0 7 0 8 0 9 0 10 0];
assert(isequal(your_fcn_name(x),y_correct))
|
2240 Solvers
Who knows the last digit of pi?
557 Solvers
Make a random, non-repeating vector.
2809 Solvers
274 Solvers
241 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!