function z = in_prod(x,y)
if length(x(1,:))==length(y(:,1))
z=x*y;
else
z="Have you checked the inner dimensions?"
end
end
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2];
y = [2;3];
z_correct = 8;
assert(isequal(in_prod(x,y),z_correct))
|
2 | Pass |
x = -5;
y = 100;
z_correct = -500;
assert(isequal(in_prod(x,y),z_correct))
|
3 | Pass |
x = [1 2 3];
y = [2;3];
assert(isStringScalar(in_prod(x,y)))
z =
"Have you checked the inner dimensions?"
|
594 Solvers
495 Solvers
224 Solvers
5112 Solvers
170 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!