Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x =[ 1 2 3; 4 5 6; 7 8 9];
y_correct = [1 2 6;4 20 120; 7 56 504];
assert(isequal(MatMultiply(x),y_correct))
r =
3
c =
3
y =
1 2 3
4 20 6
7 56 9
y =
1 2 6
4 20 120
7 56 504
|
2 | Pass |
x =reshape([1:10], 2,5);
y_correct = [ 1 3 15 105 945;
2 8 48 384 3840;];
assert(isequal(MatMultiply(x),y_correct))
r =
2
c =
5
y =
1 3 5 7 9
2 8 6 8 10
y =
1 3 15 7 9
2 8 48 8 10
y =
1 3 15 105 9
2 8 48 384 10
y =
1 3 15 105 945
2 8 48 384 3840
|
3 | Pass |
x =eye(5);
y_correct = [ 1 0 0 0 0;
0 0 0 0 0;
0 0 0 0 0;
0 0 0 0 0;
0 0 0 0 0;];
assert(isequal(MatMultiply(x),y_correct))
r =
5
c =
5
y =
1 0 0 0 0
0 0 0 0 0
0 0 1 0 0
0 0 0 1 0
0 0 0 0 1
y =
1 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 1 0
0 0 0 0 1
y =
1 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 1
y =
1 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
0 0 0 0 0
|
4 | Pass |
x =ones(7);
y_correct = ones(7);
assert(isequal(MatMultiply(x),y_correct))
r =
7
c =
7
y =
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
y =
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
y =
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
y =
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
y =
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
y =
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
1 1 1 1 1 1 1
|
Return the largest number that is adjacent to a zero
3751 Solvers
Swap the first and last columns
12417 Solvers
Find relatively common elements in matrix rows
865 Solvers
2980 Solvers
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!