Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 4 6 0
9 8 0 0 0];
y_correct = [1 1 1 1 0
1 1 0 0 0];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = [-1 2 NaN 6
3 7 0 0 ];
y_correct = [1 1 NaN 1
1 1 0 0 ];
assert(isequaln(your_fcn_name(x),y_correct))
|
3 | Pass |
x = eye(4);
y_correct = x;
assert(isequaln(your_fcn_name(x),y_correct))
|
4 | Pass |
x = 3*ones(5,7);
y_correct = ones(5,7);
assert(isequaln(your_fcn_name(x),y_correct))
|
5 | Pass |
x = (1:5)'*(1:5);
y_correct = ones(5,5);
assert(isequaln(your_fcn_name(x),y_correct))
|
Find the sum of all the numbers of the input vector
31946 Solvers
Select every other element of a vector
20334 Solvers
Find the alphabetic word product
2321 Solvers
321 Solvers
358 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!