Calculate the Surface Area of an Ellipsoid: (x/a)^2+(y/b)^2+(z/c)^2=1. Input will be a matrix [a,b,c]. Round output to four decimal places.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers9
Suggested Problems
-
Swap the first and last columns
22974 Solvers
-
Remove the two elements next to NaN value
709 Solvers
-
251 Solvers
-
114 Solvers
-
Replace pattern 0 1 0 and 1 0 1
160 Solvers
More from this Author63
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Please, don't use the function isequal with floats. Apply a tolerance to the test suite: abs(a-b)<1e-4. My code computes the exact value for the area (using incomplete elliptic integrals of the first and second kind), and has trouble with rounding issues.