Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
t = pi;
c = 5;
y_correct = 5;
assert(abs(clamperFx(t,c)-y_correct) < 0.01)
y =
1.2246e-16
y =
0
y =
5
|
2 | Pass |
t = pi/2;
c = 5;
y_correct = 6;
assert(abs(clamperFx(t,c)-y_correct) < 0.01)
y =
1
y =
6
|
3 | Pass |
t = 0;
c = 5;
y_correct = 5;
assert(abs(clamperFx(t,c)-y_correct) < 0.01)
y =
0
y =
0
y =
5
|
4 | Pass |
t = 3*pi/2;
c = -2;
y_correct = -3;
assert(abs(clamperFx(t,c)-y_correct) < 0.01)
y =
-1
y =
-3
|
Return the largest number that is adjacent to a zero
3749 Solvers
Generate a random matrix A of (1,-1)
210 Solvers
283 Solvers
find the maximum element of the matrix
348 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!