Problem Recent Solvers6802
Suggested Problems
-
2369 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1990 Solvers
-
691 Solvers
-
601 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2146 Solvers
More from this Author10
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
yay
ok
Nice problem!!!
yes nice problem
Nice!
Nice
Any idea of optimizing my answer?
function y = equilateral_area(x)
side_1 = (x/2)/tand(30);
y = (x/2)*side_1;
end
good problem