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 |
%%
h = 0.065; % stepsize
t = -10:h:10;
for tr = 1:1000
sigCoefs = 2*rand(1,3)-1;
sig = polyval(sigCoefs,t);
breakPoint = randi(length(sig)-2)+1;
sig(breakPoint) = (1.01)*sig(breakPoint);
assert(any(abs(findAJerk(sig) - breakPoint)<=6)) % extra wide window out of kindness
end
|
2197 Solvers
Read a column of numbers and interpolate missing data
1235 Solvers
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
3377 Solvers
651 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!