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 =
1.4669
|
6063 Solvers
Project Euler: Problem 5, Smallest multiple
397 Solvers
399 Solvers
620 Solvers
Fahrenheit to Celsius converter
358 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!