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 |
d = 1;
n=2;
m=2;
y_correct = 0.25;
assert(isequal(your_fcn_name(d,n,m),y_correct))
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint1 (line 5)
In solutionTest (line 3)]
|
2 | Pass |
d = 1;
n=1;
m=1;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint2 (line 5)
In solutionTest (line 5)]
|
3 | Pass |
d = 1;
n=3;
m=4;
y_correct = 0.5;
assert(isequal(your_fcn_name(d,n,m),y_correct))
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint3 (line 5)
In solutionTest (line 7)]
|
4 | Pass |
d = 2;
n=1;
m=1;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint4 (line 5)
In solutionTest (line 9)]
|
5 | Pass |
d = 0.5;
n=2;
m=3;
y_correct = 0.625;
assert(isequal(your_fcn_name(d,n,m),y_correct))
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint5 (line 5)
In solutionTest (line 11)]
|
6 | Pass |
d = 2;
n=1;
m=4;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
[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 your_fcn_name (line 2)
In ScoringEngineTestPoint6 (line 5)
In solutionTest (line 13)]
|
2500 Solvers
235 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
130 Solvers
Convert a Cell Array into an Array
430 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!