What is the problem with this solution? It works on matlab
The test suite expects the function's name to be 'your_fcn_name', instead of distanceWalked. (Which would have been a much more sensible name.)
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
%%
x = [7 10 6 4];
y_correct = 9;
assert(isequal(your_fcn_name(x),y_correct))
Error: Undefined function 'your_fcn_name' for input arguments of type 'double'.
|
2 | Fail |
%%
x = [1 2 3 2];
y_correct = 3;
assert(isequal(your_fcn_name(x),y_correct))
Error: Undefined function 'your_fcn_name' for input arguments of type 'double'.
|
3 | Fail |
%%
x = -5:5:30;
y_correct = 35;
assert(isequal(your_fcn_name(x),y_correct))
Error: Undefined function 'your_fcn_name' for input arguments of type 'double'.
|
4 | Fail |
%%
x = [45 -16 34 19 120];
y_correct = 227;
assert(isequal(your_fcn_name(x),y_correct))
Error: Undefined function 'your_fcn_name' for input arguments of type 'double'.
|
694 Solvers
Longest run of consecutive numbers
1648 Solvers
299 Solvers
Generate a random matrix A of (1,-1)
210 Solvers
The sum of the numbers in the vector
426 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!