Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 30;
y_correct = 0.5000;
assert(abs(your_fcn_name(x)-y_correct)<0.0001)
|
2 | Pass |
%%
x = 60;
y_correct = 0.8660;
assert(abs(your_fcn_name(x)-y_correct)<0.0001)
|
3 | Pass |
%%
x = 90;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
|
Find the peak 3n+1 sequence value
1107 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
The sum of the numbers in the vector
426 Solvers
130 Solvers
255 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!