This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
t = pi;
c = 5;
y_correct = 5;
assert(abs(your_fcn_name(t,c)-y_correct) < 0.01)
|
2 | Pass |
t = pi/2;
c = 5;
y_correct = 6;
assert(abs(your_fcn_name(t,c)-y_correct) < 0.01)
|
3 | Pass |
t = 0;
c = 5;
y_correct = 5;
assert(abs(your_fcn_name(t,c)-y_correct) < 0.01)
|
4 | Pass |
t = 3*pi/2;
c = -2;
y_correct = -3;
assert(abs(your_fcn_name(t,c)-y_correct) < 0.01)
|
Find the sum of all the numbers of the input vector
31946 Solvers
Returning a "greater than" vector
188 Solvers
255 Solvers
2770 Solvers
Create tangent function out of sin and cos
62 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!