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))
{Warning: Last element of input column does not match first
element of input row.
Column wins anti-diagonal conflict.}
{> In hankel at 27
In vrooom at 2
In verifyCode>evaluateCode at 189
In verifyCode at 37
In fevalJSON at 14}
|
2 | Pass |
%%
v = [1 2 3];
y_correct = [1 2 3;
2 3 0;
3 0 0];
assert(isequal(vrooom(v),y_correct))
{Warning: Last element of input column does not match first
element of input row.
Column wins anti-diagonal conflict.}
{> In hankel at 27
In vrooom at 2
In verifyCode>evaluateCode at 189
In verifyCode at 37
In fevalJSON at 14}
|
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))
{Warning: Last element of input column does not match first
element of input row.
Column wins anti-diagonal conflict.}
{> In hankel at 27
In vrooom at 2
In verifyCode>evaluateCode at 189
In verifyCode at 37
In fevalJSON at 14}
|
1263 Solvers
Get the length of a given vector
3566 Solvers
Make a run-length companion vector
512 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
309 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!