Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% test 1
x = 2;
y_correct = [1,2;2,4];
assert(isequal(matrixMultiples(x),y_correct))
y =
1
y =
1 2
y =
1 2
2 0
y =
1 2
2 4
|
2 | Pass |
%% test 2
x = 3;
y_correct = [1,2,3;2,4,6;3,6,9];
assert(isequal(matrixMultiples(x),y_correct))
y =
1
y =
1 2
y =
1 2 3
y =
1 2 3
2 0 0
y =
1 2 3
2 4 0
y =
1 2 3
2 4 6
y =
1 2 3
2 4 6
3 0 0
y =
1 2 3
2 4 6
3 6 0
y =
1 2 3
2 4 6
3 6 9
|
3 | Pass |
%% test 3
x = 4;
y_correct = [1,2,3,4;2,4,6,8;3,6,9,12;4,8,12,16];
assert(isequal(matrixMultiples(x),y_correct))
y =
1
y =
1 2
y =
1 2 3
y =
1 2 3 4
y =
1 2 3 4
2 0 0 0
y =
1 2 3 4
2 4 0 0
y =
1 2 3 4
2 4 6 0
y =
1 2 3 4
2 4 6 8
y =
1 2 3 4
2 4 6 8
3 0 0 0
y =
1 2 3 4
2 4 6 8
3 6 0 0
y =
1 2 3 4
2 4 6 8
3 6 9 0
y =
1 2 3 4
2 4 6 8
3 6 9 12
y =
1 2 3 4
2 4 6 8
3 6 9 12
4 0 0 0
y =
1 2 3 4
2 4 6 8
3 6 9 12
4 8 0 0
y =
1 2 3 4
2 4 6 8
3 6 9 12
4 8 12 0
y =
1 2 3 4
2 4 6 8
3 6 9 12
4 8 12 16
|
535 Solvers
Rotate input square matrix 90 degrees CCW without rot90
323 Solvers
Add a row of zeros on top of a matrix
145 Solvers
241 Solvers
Matlab Basics II - Count rows in a matrix
179 Solvers