Sie verfolgen jetzt diese Einreichung
- Aktualisierungen können Sie in Ihrem Feed verfolgter Inhalte sehen.
- Je nach Ihren Kommunikationseinstellungen können Sie auch E-Mails erhalten.
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
Zitieren als
Liutong (2026). intpoly(f,x,y) (https://de.mathworks.com/matlabcentral/fileexchange/62278-intpoly-f-x-y), MATLAB Central File Exchange. Abgerufen .
Quellenangaben
Inspiriert: integPoly
Allgemeine Informationen
- Version 1.0.0.0 (1,06 KB)
Kompatibilität der MATLAB-Version
- Kompatibel mit allen Versionen
Plattform-Kompatibilität
- Windows
- macOS
- Linux
| Version | Veröffentlicht | Versionshinweise | Action |
|---|---|---|---|
| 1.0.0.0 | refine the description |
