This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
If I test this function in Matlab everything works. why does the fibonacci function dont work here?
The fibonacci() function is part of the Symbolic Math toolbox. Cody utilizes vanilla Matlab and does not currently support toolbox functions.
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 1;
y_correct = 2;
assert(isequal(OctoberfestFestival(x),y_correct))
|
2 | Fail |
x = 5;
y_correct = 20;
assert(isequal(OctoberfestFestival(x),y_correct))
|
3 | Fail |
x = 10;
y_correct = 232;
assert(isequal(OctoberfestFestival(x),y_correct))
|
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!