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)
y =
-0.5000
y =
1
|
2 | Pass |
t = pi/2;
c = 0.5;
y_correct = 0.5;
assert(abs(clipperFx(t,c,'down')-y_correct)<0.01)
y =
0.5000
|
3 | Pass |
t = 0;
c = 0.5;
y_correct = 0.5;
assert(abs(clipperFx(t,c,'up')-y_correct)<0.01)
y =
0.5000
|
4 | Pass |
t = pi/2;
c = 0.5;
y_correct = 1;
assert(abs(clipperFx(t,c,'up')-y_correct)<0.01)
y =
1.5000
y =
1
|
1726 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
Given a 4x4 matrix, swap the two middle columns
515 Solvers
Find out sum of all elements of given Matrix
349 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!