Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [3 4 5];
y_correct = 2.5;
assert(isequal(circle_radius(x),y_correct))
ans =
2.5000
|
2 | Pass |
%%
x = [3 4 3];
y_correct = 2.0125;
assert(abs(circle_radius(x)-y_correct)<.0001)
ans =
2.0125
|
3 | Pass |
%%
x = [1 2 sqrt(3)];
y_correct = 1.0000;
assert(abs(circle_radius(x)-y_correct)<.0001)
ans =
1
|
Similar Triangles - find the height of the tree
203 Solvers
Back to basics 4 - Search Path
322 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
278 Solvers
171 Solvers
The sum of the numbers in the vector
426 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!