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 |
%%
v = [1 3 6 9 11];
y_correct = [1 3 6 9 11;
3 6 9 11 0;
6 9 11 0 0;
9 11 0 0 0;
11 0 0 0 0];
assert(isequal(vrooom(v),y_correct))
i =
2
ramp =
1 3 6 9 11
d =
0
w =
3 6 9 11 0
ramp =
1 3 6 9 11
3 6 9 11 0
i =
3
d =
0 0
0 0
w =
6 9 11 0 0
ramp =
1 3 6 9 11
3 6 9 11 0
6 9 11 0 0
i =
4
d =
0 0 0
0 0 0
0 0 0
w =
9 11 0 0 0
ramp =
1 3 6 9 11
3 6 9 11 0
6 9 11 0 0
9 11 0 0 0
i =
5
d =
0 0 0 0
0 0 0 0
0 0 0 0
0 0 0 0
w =
11 0 0 0 0
ramp =
1 3 6 9 11
3 6 9 11 0
6 9 11 0 0
9 11 0 0 0
11 0 0 0 0
i =
6
|
2 | Pass |
%%
v = [1 2 3];
y_correct = [1 2 3;
2 3 0;
3 0 0];
assert(isequal(vrooom(v),y_correct))
i =
2
ramp =
1 2 3
d =
0
w =
2 3 0
ramp =
1 2 3
2 3 0
i =
3
d =
0 0
0 0
w =
3 0 0
ramp =
1 2 3
2 3 0
3 0 0
i =
4
|
3 | Pass |
%%
v = [-1 0 2 8];
y_correct = [-1 0 2 8;
0 2 8 0;
2 8 0 0;
8 0 0 0];
assert(isequal(vrooom(v),y_correct))
i =
2
ramp =
-1 0 2 8
d =
0
w =
0 2 8 0
ramp =
-1 0 2 8
0 2 8 0
i =
3
d =
0 0
0 0
w =
2 8 0 0
ramp =
-1 0 2 8
0 2 8 0
2 8 0 0
i =
4
d =
0 0 0
0 0 0
0 0 0
w =
8 0 0 0
ramp =
-1 0 2 8
0 2 8 0
2 8 0 0
8 0 0 0
i =
5
|
192 Solvers
216 Solvers
521 Solvers
340 Solvers
1221 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!