Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
m=1;
n=1;
y_correct = 1;
assert(isequal(recingrid(m,n),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 recingrid (line 2)
In ScoringEngineTestPoint1 (line 4)
In solutionTest (line 3)]
ans =
1
|
2 | Pass |
m=3;
n=4;
y_correct = 60;
assert(isequal(recingrid(m,n),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 recingrid (line 2)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
ans =
1
|
3 | Pass |
m=7;
n=3;
y_correct = 168;
assert(isequal(recingrid(m,n),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 recingrid (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
ans =
1
|
4 | Pass |
m=5;
n=5;
y_correct = 225;
assert(isequal(recingrid(m,n),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 recingrid (line 2)
In ScoringEngineTestPoint4 (line 4)
In solutionTest (line 9)]
ans =
1
|
926 Solvers
Check if number exists in vector
4465 Solvers
Who is the smartest MATLAB programmer?
561 Solvers
Switch matrix to a column vector
260 Solvers
321 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!