Calculate the eccentricity of ellipses

不想你离开。 提交于 2019-12-22 01:43:39

问题


I've like to calculate the eccentricity of ellipses x, in my example:

#Artificial ellipse
a <- 1 # semi-major axis 
e <- x# eccentricity 
b <- a * sqrt(1 - e^2) # semi-minor axis
c <- 1.3 # ellipse area

But I need to make this using the ellipse area (c) in the calculation. This is poisible?


回答1:


b = c/(pi*a);
x = (sqrt(a^2 - b^2))/a;

is the formula you need. Or put togther:

x = (sqrt(a^2 - (c/(pi*a))^2))/a;


来源:https://stackoverflow.com/questions/55676436/calculate-the-eccentricity-of-ellipses

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!