Area, Centroid, and Moment of Inertia of a Polygon

Finds area, centroid, moment of Inertia and higher order moments of arbitrary polygonal shapes.
ダウンロード: 709
更新 2019/6/17

ライセンスの表示

Area=MOMENT(polygon,0,0)
Cx=MOMENT(polygon,1,0)/Area
Cy=MOMENT(polygon,0,1)/Area
Ixx=MOMENT(polygon,2,0)
Iyy=MOMENT(polygon,0,2)
Ixy=MOMENT(polygon,1,1)

where: the function MOMENT is defined as:

function M=MOMENT(polygon,m,n)
Input:
-------
Polygon is a structure contains coordinates vectors Polygon.x and Polygon.y
m:is the order of moment in x-direction
n:is the order of moment in y-direction

Output:
----------
M: Moment

References:
------------------
Kawakami, M., and Amin Ghali. "Time-dependent stresses in prestressed concrete sections of general shape." PCI journal 41.3 (1996).

引用

Ayad Al-Rumaithi (2024). Area, Centroid, and Moment of Inertia of a Polygon (https://www.mathworks.com/matlabcentral/fileexchange/70090-area-centroid-and-moment-of-inertia-of-a-polygon), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2009b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersElementary Polygons についてさらに検索
タグ タグを追加

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.0.2

summary

1.0.1

description , pic

1.0.0