Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p = [0 0;
1 0;
2 2;
0 1];
ix_correct = [1 3];
assert(isequal(mostDistant(p),ix_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 mostDistant (line 2)
In ScoringEngineTestPoint1 (line 6)
In solutionTest (line 3)]
|
2 | Pass |
p = [0 0;
1 0;
2 2;
0 10];
ix_correct = [2 4];
assert(isequal(mostDistant(p),ix_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 mostDistant (line 2)
In ScoringEngineTestPoint2 (line 6)
In solutionTest (line 5)]
|
3 | Pass |
p = [0 0;
-1 50];
ix_correct = [1 2];
assert(isequal(mostDistant(p),ix_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 mostDistant (line 2)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
4 | Pass |
p = [5 5;
1 0;
2 2;
0 10;
-100 20;
1000 400];
ix_correct = [5 6];
assert(isequal(mostDistant(p),ix_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 mostDistant (line 2)
In ScoringEngineTestPoint4 (line 8)
In solutionTest (line 9)]
|
819 Solvers
Vectorize the digits of an Integer
269 Solvers
299 Solvers
Try 1.5.4: Celsius to Fahrenheit
609 Solvers
Side of an equilateral triangle
2595 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!