This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
y_correct = 1;
assert(isequal(mat_fun(n),y_correct))
|
2 | Fail |
%%
n = 2;
y_correct = [2 1; 1 1];
assert(isequal(mat_fun(n),y_correct))
Error: Assertion failed.
|
3 | Fail |
%%
n = 3;
y_correct = [3 2 1; 2 2 1; 1 1 1]
assert(isequal(mat_fun(n),y_correct))
Error: Assertion failed.
|
4 | Fail |
%%
n = 4;
y_correct = [4 3 2 1; 3 3 2 1; 2 2 2 1; 1 1 1 1]
assert(isequal(mat_fun(n),y_correct))
Error: Assertion failed.
|
Remove any row in which a NaN appears
6827 Solvers
6281 Solvers
188 Solvers
338 Solvers
444 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!