intpoly(f,x,y)

版本 1.0.0.0 (1.1 KB) 作者: Liutong
Double Integration over a polygonal region.
198.0 次下载
更新时间 2017/3/25

查看许可证

z=intpoly(f,x,y) integrate function f(u,v) over the polygon, which is defined by vertices [x,y]

input:
-f: a function handle, for example f=@(x,y) exp(x+y)
-x,y: vertices of the polygon. the (x1,y1),(x2,y2)... vertices can be either in clockwise order or counterclockwise order
ouput:
-z: the value of function f integrated over the polygon
example:
fill([0,1,2],[0,1,0],'b') %this is the triangle region

f=@(x,y) exp(x+y);
z=intpoly(f,[0,1,2],[0,1,0]) will integrate f over the triangle region defined by its three verteces (0,0), (1,1) and (2,0)

ans=4.1945

引用格式

Liutong (2024). intpoly(f,x,y) (https://www.mathworks.com/matlabcentral/fileexchange/62278-intpoly-f-x-y), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2016b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Triangulation Representation 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0

refine the description