フィルターのクリア

Calculating the length of a curve

4 ビュー (過去 30 日間)
Hossein
Hossein 2017 年 1 月 13 日
コメント済み: Jyotish Robin 2017 年 1 月 17 日
Hi everyone,
can anybody tell me how to calculate the length of a curve being defined in polar coordinate system using following equation? z=21-2*cos(1.5*(tet-7*pi/6))
for tet=[pi/2:0.001:pi/2+2*pi/3].
I put the code here too and many thanks in advance.
tet=[pi/2:0.001:pi/2+2*pi/3];
z=21-2*cos(1.5*(tet-pi/2-pi/3));
polar(tet,z)
  1 件のコメント
Jyotish Robin
Jyotish Robin 2017 年 1 月 17 日
To find the length of a curve y=f(x), we can make use of the formula:
L =integral(sqrt(1+(dy/dx)^2));
Now you can make use of the functions "diff" and "int" in MATLAB to perform differentiation and integration operations.
As an alternative to "int" function, you can try using "quad" function also.
Hope this helps !

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by