Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
A = 1;row =1;
y_correct = 1;
assert(isequal(your_fcn_name(A,row),y_correct));
|
2 | Pass |
%%
A = [1;2;3;4];row = 1
y_correct = 1;
assert(isequal(your_fcn_name(A,row),y_correct));
row =
1
|
3 | Pass |
%%
A = [1;2;3;4];row = 4
y_correct = 1;
assert(isequal(your_fcn_name(A,row),y_correct));
row =
4
|
4 | Pass |
%%
A = [1;2;3;4];row = 2
y_correct = 1;
assert(isequal(your_fcn_name(A,row),y_correct));
row =
2
|
5 | Pass |
%%
A = [1;2;3;4;5];row = 2
y_correct = 0;
assert(isequal(your_fcn_name(A,row),y_correct));
row =
2
|
926 Solvers
367 Solvers
Find the dimensions of a matrix
372 Solvers
Help the Patriots get to the Super Bowl
150 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!