Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [3 4 5];
y_correct = 2.5;
assert(isequal(circle_radius(x),y_correct))
y =
2.5000
ans =
[]
|
2 | Pass |
%%
x = [3 4 3];
y_correct = 2.0125;
assert(abs(circle_radius(x)-y_correct)<.0001)
y =
2.0125
ans =
[]
|
3 | Pass |
%%
x = [1 2 sqrt(3)];
y_correct = 1.0000;
assert(abs(circle_radius(x)-y_correct)<.0001)
y =
1
ans =
[]
|
Program an exclusive OR operation with logical operators
639 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Celsius to Fahrenheit converter
388 Solvers
450 Solvers
307 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!