필터 지우기
필터 지우기

How to find the length of a Parabola

조회 수: 3 (최근 30일)
Danny Maefengea
Danny Maefengea 2020년 9월 10일
댓글: Ameer Hamza 2020년 9월 10일
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
Ameer Hamza
Ameer Hamza 2020년 9월 10일
How do you define the "Length of Parabola" for this question?

댓글을 달려면 로그인하십시오.

채택된 답변

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에서 Particle & Nuclear Physics에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by