Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [-1,-1,1,1];
y = [-1,1,1,-1];
d_correct = true;
assert(isequal(isSortedClockwise(x,y),d_correct))
|
2 | Pass |
x = [-1,-1,-2,-2];
y = [-1,1,1,-1];
d_correct = false;
assert(isequal(isSortedClockwise(x,y),d_correct))
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint2 (line 4)
In solutionTest (line 5)]
|
3 | Pass |
x = [-1,-1,-2,-2];
y = [-1,1,1,-1];
d_correct = false;
assert(isequal(isSortedClockwise(x,y),d_correct))
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint3 (line 4)
In solutionTest (line 7)]
|
4 | Pass |
x = [-6,-7,-2,1,1,-2];
y = [4,-7,-13,-11,0,5];
d_correct = false;
assert(isequal(isSortedClockwise(x,y),d_correct))
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint4 (line 4)
In solutionTest (line 9)]
|
5 | Pass |
x = [-59,-59,-55,-51,-50,-46,-45,-45,-39,-40,-40,-41,-46,-50,-50];
y = [-68,-33, -5,-13,-28,-30,-20,-10, -8,-23,-34,-45,-48,-51,-51];
d_correct = true;
assert(isequal(isSortedClockwise(x,y),d_correct))
|
6 | Pass |
x = flip([-59,-59,-55,-51,-50,-46,-45,-45,-39,-40,-40,-41,-46,-50,-50]);
y = flip([-68,-33, -5,-13,-28,-30,-20,-10, -8,-23,-34,-45,-48,-51,-51]);
d_correct = false;
assert(isequal(isSortedClockwise(x,y),d_correct))
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint6 (line 4)
In solutionTest (line 13)]
|
7 | Pass |
x = [1,1,2,2];
y = [2,1,1,2];
assert(isequal(isSortedClockwise(x,y),false));
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint7 (line 3)
In solutionTest (line 15)]
|
8 | Pass |
x = flip([1,1,2,2]);
y = flip([2,1,1,2]);
assert(isequal(isSortedClockwise(x,y),true));
|
9 | Pass |
x = [-2,-2,-4,-4];
y = [1,3,1,-1];
assert(isequal(isSortedClockwise(x,y),false));
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint9 (line 3)
In solutionTest (line 19)]
|
10 | Pass |
x = flip([-2,-2,-4,-4]);
y = flip([1,3,1,-1]);
assert(isequal(isSortedClockwise(x,y),true));
|
11 | Pass |
r=rand(100,15);
a=2*pi*rand(100,1);
d=2*(rand(100,1)>.5)-1;
x=r.*cos(a*ones(1,15)+d*2*pi*(0:14)/15)+randn(100,1);
y=r.*sin(a*ones(1,15)+d*2*pi*(0:14)/15)+randn(100,1);
assert(all(arrayfun(@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0),1:100)))
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (line 23)]
[Warning: Polyshape has duplicate vertices, intersections, or other inconsistencies that may produce inaccurate or unexpected results. Input data has been modified to create a
well-defined polyshape.]
[> In polyshape/checkAndSimplify (line 421)
In polyshape (line 155)
In isSortedClockwise (line 6)
In ScoringEngineTestPoint11>@(i)isequal(isSortedClockwise(x(i,:),y(i,:)),d(i)<0)
In ScoringEngineTestPoint11 (line 6)
In solutionTest (...
|
Reverse the Words (not letters) of a String
297 Solvers
351 Solvers
1143 Solvers
Spherical radius given four points
107 Solvers
Height of a right-angled triangle
448 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!