This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
t = 0;
c = 0.5;
y_correct = 0;
assert(abs(your_fcn_name(t,c,'down')-y_correct)<0.01)
|
2 | Pass |
t = pi/2;
c = 0.5;
y_correct = 0.5;
assert(abs(your_fcn_name(t,c,'down')-y_correct)<0.01)
|
3 | Pass |
t = 0;
c = 0.5;
y_correct = 0.5;
assert(abs(your_fcn_name(t,c,'up')-y_correct)<0.01)
|
4 | Pass |
t = pi/2;
c = 0.5;
y_correct = 1;
assert(abs(your_fcn_name(t,c,'up')-y_correct)<0.01)
|
1263 Solvers
Return the first and last character of a string
3454 Solvers
135 Solvers
Convert decimal to binary and then generate the minimum binary it can with jumbling
55 Solvers
46 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!