Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[1 1 ; 3 0 ; 1 1];
y=[5 3];
y_correct=[1 1 ; 1.5 0.75 ; 2 0.5 ; 2.5 0.25 ; 3 0 ; 2 0.5 ; 1 1];
assert(all(all(abs(tracers(x,y)-y_correct)<1e-9)))
[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 tracers (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
|
2 | Pass |
x=[1 1 ; 2 3 ; 4 2 ; 5 -2];
y=[6 5 3];
y_correct=[1 1 ; 1.2 1.4 ; 1.4 1.8 ; 1.6 2.2 ; 1.8 2.6 ; 2 3 ; 2.5 2.75 ; 3 2.5 ; 3.5 2.25 ; 4 2 ; 4.5 0 ; 5 -2];
assert(all(all(abs(tracers(x,y)-y_correct)<1e-9)))
[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 tracers (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
a=ceil(100*rand)+10;
x=[0 0 ; a a];
y=a+1;
y_correct=[0:a ; 0:a]';
assert(all(all(abs(tracers(x,y)-y_correct)<1e-9)))
[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 tracers (line 2)
In ScoringEngineTestPoint3 (line 5)
In solutionTest (line 7)]
|
894 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
149 Solvers
393 Solvers
274 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!