Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 1;
B = 2;
C = mtimesm(A,B);
C_correct = 2;
assert(isequal(C,C_correct))
|
2 | Pass |
A = rand(2,3);
B = rand(3,4);
C = mtimesm(A,B);
C_correct = A*B;
assert(isequal(C,C_correct))
|
3 | Pass |
A = rand(2,3);
B = 2;
C = mtimesm(A,B);
C_correct = 2*A;
assert(isequal(C,C_correct))
|
4 | Pass |
A = rand(2,3,2);
B = rand(3,4,2);
C = mtimesm(A,B);
C_correct = cat(3,A(:,:,1)*B(:,:,1),A(:,:,2)*B(:,:,2));
assert(isequal(C,C_correct))
|
5 | Pass |
A = rand(2,3,3);
B = rand(3,4);
C = mtimesm(A,B);
C_correct = cat(3,A(:,:,1)*B,A(:,:,2)*B,A(:,:,3)*B);
assert(isequal(C,C_correct))
|
6 | Pass |
A = rand(4,3,1,2);
B = rand(3,2,2);
C = mtimesm(A,B);
C_correct(:,:,1,1) = A(:,:,1,1)*B(:,:,1);
C_correct(:,:,1,2) = A(:,:,1,2)*B(:,:,1);
C_correct(:,:,2,1) = A(:,:,1,1)*B(:,:,2);
C_correct(:,:,2,2) = A(:,:,1,2)*B(:,:,2);
assert(isequal(C,C_correct))
|
7 | Pass |
A = rand(4,3,1,2);
B = rand(3,2,1,1,2);
C = mtimesm(A,B);
C_correct(:,:,1,1,1) = A(:,:,1,1)*B(:,:,1,1,1);
C_correct(:,:,1,1,2) = A(:,:,1,1)*B(:,:,1,1,2);
C_correct(:,:,1,2,1) = A(:,:,1,2)*B(:,:,1,1,1);
C_correct(:,:,1,2,2) = A(:,:,1,2)*B(:,:,1,1,2);
assert(isequal(C,C_correct))
|
231 Solvers
399 Solvers
Getting the absolute index from a matrix
211 Solvers
Implement simple rotation cypher
943 Solvers
299 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!