Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 3;
alpha = 1 : 1 : 10;
beta = 2 : 2 : 20;
b = 6;
out = interpolator(a, alpha, beta);
assert(isequal(out(:), b))
[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 interpolator (line 2)
In ScoringEngineTestPoint1 (line 6)
In solutionTest (line 3)]
|
2 | Pass |
a = 3.5;
alpha = 1 : 1 : 10;
beta = 2 : 2 : 20;
b = 7;
out = interpolator(a, alpha, beta);
assert(isequal(out(:), b))
[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 interpolator (line 2)
In ScoringEngineTestPoint2 (line 6)
In solutionTest (line 5)]
|
3 | Pass |
a = 3;
alpha = [0 1 5 6 7 10];
beta = [2 3 5 7 9 100];
b = 4;
out = interpolator(a, alpha, beta);
assert(isequal(out(:), b))
[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 interpolator (line 2)
In ScoringEngineTestPoint3 (line 6)
In solutionTest (line 7)]
|
The Answer to Life, the Universe, and Everything
383 Solvers
Relative ratio of "1" in binary number
392 Solvers
432 Solvers
5112 Solvers
641 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!