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 |
xy=[0,0;
1,0;
1,1;
0,1;
0,0];
err=(abs(perimeter1(xy)-4)/(4))*100;
assert(err<.1)
L =
4
|
2 | Pass |
t=[0:pi/100:2*pi,0]';
xy=[cos(t),sin(t)];
err=(abs(perimeter1(xy)-2*pi)/(2*pi))*100;
assert(err<.1)
L =
6.2829
|
3 | Pass |
t=[0:pi/100:pi,0]';
xy=[cos(t),sin(t)];
err=(abs(perimeter1(xy)-(pi+2))/(2+pi))*100;
assert(err<.1)
L =
5.1415
|
4 | Pass |
side=rand;
x=side*[-1 -0.5 0.5 1 0.5 -0.5 -1];
y=side*sqrt(3)*[0 -0.5 -0.5 0 0.5 0.5 0];
xy=[x',y'];
err=(abs(perimeter1(xy)-(6*side))/(6*side))*100;
assert(err<.1)
L =
5.7555
|
28001 Solvers
Which values occur exactly three times?
3817 Solvers
Back to basics 19 - character types
225 Solvers
07 - Common functions and indexing 6
348 Solvers
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!