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 |
%%
a = [ 1 5 8 9 7 4 5 6];
b = [ 6 8 4 1 ];
y_correct = [ 6 38 92 139 151 124 99 99 72 29 6];
assert(isequal(multiply(a,b),y_correct))
a = [ 22 98 56 74 12];
b = [78 45 ];
y_correct = [ 1716 8634 8778 8292 4266 540];
assert(isequal(multiply(a,b),y_correct))
ans =
6 38 92 139 151 124 99 99 72 29 6
ans =
1716 8634 8778 8292 4266 540
|
1966 Solvers
Calculate the area of a triangle between three points
280 Solvers
MATCH THE STRINGS (2 CHAR) very easy
194 Solvers
579 Solvers
Matlab Basics - Create a row vector
205 Solvers