Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 100;
B = 100;
assert(isequal(toeplitize(A),B))
|
2 | Pass |
A = [9,4;2,3;2,0];
B = [6,4;1,6;2,1];
assert(isequal(toeplitize(A),B))
|
3 | Pass |
A = [7,10,9;5,1,0];
B = [4,5,9;5,4,5];
assert(isequal(toeplitize(A),B))
|
4 | Pass |
A = [6 3 2 7;3 5 1 2;3 7 10 2];
B = [7,2,2,7;5,7,2,2;3,5,7,2];
assert(isequal(toeplitize(A),B))
|
5 | Pass |
A = [3,-1,-10,1,4,2;8,4,0,4,2,0;2,0,-1,10,-3,6];
B = [2,3,-3,3,2,2;4,2,3,-3,3,2;2,4,2,3,-3,3];
assert(isequal(toeplitize(A),B))
|
9826 Solvers
Find the alphabetic word product
2321 Solvers
Create a square matrix of multiples
383 Solvers
Flip the vector from right to left
2667 Solvers
1222 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!