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 | 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
|
3968 Solvers
746 Solvers
Getting the indices from a vector
3206 Solvers
206 Solvers
326 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!