Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 100;
B = 100;
assert(isequal(hankelize(A),B));
|
2 | Pass |
A = [2,0
2,3
9,4];
B = [2,1
1,6
6,4];
assert(isequal(hankelize(A),B));
|
3 | Pass |
A = [5 1 0
7 10 9];
B = [5 4 5
4 5 9];
assert(isequal(hankelize(A),B));
|
4 | Pass |
A = [3 7 10 2
3 5 1 2
6 3 2 7];
B = [3 5 7 2
5 7 2 2
7 2 2 7];
assert(isequal(hankelize(A),B));
|
5 | Pass |
A = [2 0 -1 10 -3 6
8 4 0 4 2 0
3 -1 -10 1 4 2];
B = [2 4 2 3 -3 3
4 2 3 -3 3 2
2 3 -3 3 2 2];
assert(isequal(hankelize(A),B));
|
1800 Solvers
Back to basics 12 - Input Arguments
525 Solvers
184 Solvers
Removing rows from a matrix is easy - but what about inserting rows?
127 Solvers
420 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!