Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 5;
y_correct = [1 0 0 0 1
1 1 0 0 1
1 0 1 0 1
1 0 0 1 1
1 0 0 0 1];
assert(isequal(N(x),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 N (line 2)
In ScoringEngineTestPoint1 (line 7)
In solutionTest (line 3)]
|
2 | Pass |
x = 3;
y_correct = [1 0 1
1 1 1
1 0 1]
assert(isequal(N(x),y_correct))
y_correct =
1 0 1
1 1 1
1 0 1
[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 N (line 2)
In ScoringEngineTestPoint2 (line 5)
In solutionTest (line 5)]
|
3 | Pass |
x = 4;
y_correct = [1 0 0 1
1 1 0 1
1 0 1 1
1 0 0 1]
assert(isequal(N(x),y_correct))
y_correct =
1 0 0 1
1 1 0 1
1 0 1 1
1 0 0 1
[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 N (line 2)
In ScoringEngineTestPoint3 (line 6)
In solutionTest (line 7)]
|
1598 Solvers
492 Solvers
234 Solvers
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
358 Solvers
198 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!