i wrote solution like below
z = sum(x.*y);
it is working on my laptop but in cody show incorrect tell me why
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = 1:3;
y= 3:-1:1;
z_correct = 10;
assert(isequal(your_fcn_name(x,y),z_correct))
Error: Assertion failed.
|
2 | Fail |
%%
x = 1:6;
y= ones(1,6);
z_correct = 21;
assert(isequal(your_fcn_name(x,y),z_correct))
Error: Assertion failed.
|
1398 Solvers
462 Solvers
Deleting an element in a matrix
325 Solvers
379 Solvers
992 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!