Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
t = 0;
c = 0.5;
y_correct = 0;
assert(abs(clipperFx(t,c,'down')-y_correct)<0.01)
|
2 | Fail |
t = pi/2;
c = 0.5;
y_correct = 0.5;
assert(abs(clipperFx(t,c,'down')-y_correct)<0.01)
|
3 | Pass |
t = 0;
c = 0.5;
y_correct = 0.5;
assert(abs(clipperFx(t,c,'up')-y_correct)<0.01)
|
4 | Pass |
t = pi/2;
c = 0.5;
y_correct = 1;
assert(abs(clipperFx(t,c,'up')-y_correct)<0.01)
|
3892 Solvers
Project Euler: Problem 10, Sum of Primes
707 Solvers
Simple equation: Annual salary
3779 Solvers
Matlab Basics - Convert a row vector to a column vector
419 Solvers
Create tangent function out of cosine only
62 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!