Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
n = 1;
y_correct = 1;
assert(isequal(mat_fun(n),y_correct))
|
2 | Pass |
%%
n = 2;
y_correct = [2 1; 1 1];
assert(isequal(mat_fun(n),y_correct))
|
3 | Pass |
%%
n = 3;
y_correct = [3 2 1; 2 2 1; 1 1 1]
assert(isequal(mat_fun(n),y_correct))
y_correct =
3 2 1
2 2 1
1 1 1
|
4 | Pass |
%%
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))
y_correct =
4 3 2 1
3 3 2 1
2 2 2 1
1 1 1 1
|
1882 Solvers
Back to basics 17 - white space
245 Solvers
Implement simple rotation cypher
943 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
Find the dimensions of a matrix
372 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!