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 |
x = 3;
y_correct = [0 0 1 0 0
0 1 0 1 0
1 0 2 0 1];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = 5;
y_correct = [0 0 0 0 1 0 0 0 0
0 0 0 1 0 1 0 0 0
0 0 1 0 2 0 1 0 0
0 1 0 3 0 3 0 1 0
1 0 4 0 6 0 4 0 1];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = 7;
y_correct = [0 0 0 0 0 0 1 0 0 0 0 0 0
0 0 0 0 0 1 0 1 0 0 0 0 0
0 0 0 0 1 0 2 0 1 0 0 0 0
0 0 0 1 0 3 0 3 0 1 0 0 0
0 0 1 0 4 0 6 0 4 0 1 0 0
0 1 0 5 0 10 0 10 0 5 0 1 0
1 0 6 0 15 0 20 0 15 0 6 0 1];
assert(isequal(your_fcn_name(x),y_correct))
|
1051 Solvers
Flip the main diagonal of a matrix
506 Solvers
349 Solvers
Volume difference between Ellipsoid and Sphere
96 Solvers
Flip the vector from right to left
2667 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!