This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
t = -1;
h_correct = 1000;
assert(abs(height_of_object_at_time(t)-h_correct)<0.1)
h =
995.1000
h =
1000
|
2 | Pass |
t = 0;
h_correct = 1000;
assert(abs(height_of_object_at_time(t)-h_correct)<0.1)
h =
1000
|
3 | Pass |
t = 1;
h_correct = 995.1;
assert(abs(height_of_object_at_time(t)-h_correct)<0.1)
h =
995.1000
|
4 | Pass |
t = 10;
h_correct = 510;
assert(abs(height_of_object_at_time(t)-h_correct)<0.1)
h =
510.0000
|
5 | Pass |
t = 15;
h_correct = 0;
assert(abs(height_of_object_at_time(t)-h_correct)<0.1)
h =
-102.5000
h =
0
|
Read a column of numbers and interpolate missing data
799 Solvers
Back to basics 25 - Valid variable names
253 Solvers
328 Solvers
Find out missing number from a vector of 9 elements
207 Solvers
197 Solvers