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 |
x1=[1 2 1]; y1=[1 2 2 4 5 6 6 8];
y_correct = [2.3333 3.3333 5.0000 6.6667 7.6667 8.6667];
assert(sum(abs(smooth1dconv(x1,y1)-y_correct))<0.001)
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In smooth1dconv (line 2)
In ScoringEngineTestPoint1 (line 3)
In solutionTest (line 3)]
|
2 | Pass |
x1=[1 2 1]; y1=[1 1 1 1 1 1 1 1];
y_correct = [1.3333 1.3333 1.3333 1.3333 1.3333 1.3333];
assert(sum(abs(smooth1dconv(x1,y1)-y_correct))<0.001)
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In smooth1dconv (line 2)
In ScoringEngineTestPoint2 (line 3)
In solutionTest (line 5)]
|
851 Solvers
351 Solvers
197 Solvers
Matlab Basics - Logical Tests I
138 Solvers
69 Solvers