This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
C=[4; 1; 2];
R=[2 3 5];
M=[8 12 20; 2 3 5; 4 6 10];
assert(isequal(mul(C,R),M));
ans =
8 12 20
2 3 5
4 6 10
|
2 | Pass |
%%
C=[1; 1; 1];
R=[1 1];
M=ones(3,2);
assert(isequal(mul(C,R),M));
ans =
1 1
1 1
1 1
|
3 | Pass |
%%
C=[1;2;3;0];
R=[7,2];
M=[7 2; 14 4; 21 6; 0 0];
assert(isequal(mul(C,R),M));
ans =
7 2
14 4
21 6
0 0
|
1105 Solvers
277 Solvers
Generate N equally spaced intervals between -L and L
442 Solvers
244 Solvers
216 Solvers