How to find the length of a Parabola

4 次查看(过去 30 天)
Hi there, How do I find the length of the parabola given by this equation? Equation: y = 1/20x^2 -5.
Thank you for your help.

采纳的回答

KSSV
KSSV 2020-9-10
x = linspace(-10,+10,10^3) ;
y = 1/20*x.^2 -5 ;
dx = diff(x) ;
dy = diff(y) ;
L = sum(sqrt(dx.^2+dy.^2) );

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Solver Outputs and Iterative Display 的更多信息

产品


版本

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by