Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 7;
y_correct = [3 1 0 0 0 0 0;
1 2 1 0 0 0 0;
0 1 1 1 0 0 0;
0 0 1 0 1 0 0;
0 0 0 1 1 1 0;
0 0 0 0 1 2 1;
0 0 0 0 0 1 3];
assert(isequal(your_fcn_name(x),y_correct))
|
2 | Pass |
x = 5;
y_correct =[2 1 0 0 0;
1 1 1 0 0;
0 1 0 1 0;
0 0 1 1 1;
0 0 0 1 2];
assert(isequal(your_fcn_name(x),y_correct))
|
3 | Pass |
x = 11;
y_correct =[5 1 0 0 0 0 0 0 0 0 0;
1 4 1 0 0 0 0 0 0 0 0;
0 1 3 1 0 0 0 0 0 0 0;
0 0 1 2 1 0 0 0 0 0 0;
0 0 0 1 1 1 0 0 0 0 0;
0 0 0 0 1 0 1 0 0 0 0;
0 0 0 0 0 1 1 1 0 0 0;
0 0 0 0 0 0 1 2 1 0 0;
0 0 0 0 0 0 0 1 3 1 0;
0 0 0 0 0 0 0 0 1 4 1;
0 0 0 0 0 0 0 0 0 1 5];
assert(isequal(your_fcn_name(x),y_correct));
|
4 | Pass |
x = 5;
y_correct =[2 1 0 0 0;
1 1 1 0 0;
0 1 0 1 0;
0 0 1 1 1;
0 0 0 1 2];
assert(isequal(your_fcn_name(x),y_correct));
|
19330 Solvers
3968 Solvers
235 Solvers
579 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!