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))
ans =
[]
|
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))
ans =
[]
|
3 | Pass |
x = eye(4);
y_correct = x;
assert(isequaln(your_fcn_name(x),y_correct))
ans =
[]
|
4 | Pass |
x = 3*ones(5,7);
y_correct = ones(5,7);
assert(isequaln(your_fcn_name(x),y_correct))
ans =
[]
|
5 | Pass |
x = (1:5)'*(1:5);
y_correct = ones(5,5);
assert(isequaln(your_fcn_name(x),y_correct))
ans =
[]
|
1882 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
Number of digits in an integer
336 Solvers
321 Solvers
Calculate Amount of Cake Frosting
7549 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!