Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
t = pi;
c = 5;
y_correct = 5;
assert(abs(clamperFx(t,c)-y_correct) < 0.01)
|
2 | Pass |
t = pi/2;
c = 5;
y_correct = 6;
assert(abs(clamperFx(t,c)-y_correct) < 0.01)
|
3 | Pass |
t = 0;
c = 5;
y_correct = 5;
assert(abs(clamperFx(t,c)-y_correct) < 0.01)
|
4 | Pass |
t = 3*pi/2;
c = -2;
y_correct = -3;
assert(abs(clamperFx(t,c)-y_correct) < 0.01)
|
Project Euler: Problem 1, Multiples of 3 and 5
1491 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
345 Solvers
217 Solvers
Test Problem; Create a 5x5 array containing all ones
270 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!