Effacer les filtres
Effacer les filtres

How to find the length of a Parabola

4 vues (au cours des 30 derniers jours)
Danny Maefengea
Danny Maefengea le 10 Sep 2020
Commenté : Ameer Hamza le 10 Sep 2020
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.
  1 commentaire
Ameer Hamza
Ameer Hamza le 10 Sep 2020
How do you define the "Length of Parabola" for this question?

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 10 Sep 2020
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) );

Plus de réponses (0)

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by