Caculate the area of below ellipse.
So, input x = [a b], numeric vector when a, b are not zero.
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers66
Suggested Problems
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1307 Solvers
-
531 Solvers
-
Try 1.5.4: Celsius to Fahrenheit
867 Solvers
-
1713 Solvers
-
Sum of the Multiplication of Vectors
286 Solvers
More from this Author2
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I think the problem answer is incorrect.
The area is pi*a*b for a standard ellipse (x^2/a^2 + y^2/b^2 = 1)
and not the one that is mentioned. So according to the problem statement, the answer should be pi*sqrt(a*b)
Thank you Dyuman.
I missed the terms of the square.
I modified the form of the ellipse equation.