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))
|
Given a 4x4 matrix, swap the two middle columns
515 Solvers
411 Solvers
302 Solvers
Find out value of sine given by degree.
231 Solvers
Convert given decimal number to binary number.
636 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!