How do I compute the volume under an sfit surface (fo=fit([x,y],z,'poly33') over the area of a polyshape (shape=polyshape(x,y))?
1 回表示 (過去 30 日間)
古いコメントを表示
How do I compute the volume under an sfit surface (fo=fit([x,y],z,'poly33') over the area of a polyshape (shape=polyshape(x,y))?
0 件のコメント
回答 (1 件)
Jyotsna Talluri
2019 年 8 月 6 日
Hi,
Volume under sfit surface can be calculated using triplequad function.It evaluates the triple integral of function over the specified region
>> Triplequad(fo,xmin,xmax,ymin,ymax,zmin,zmax);
Specify the arguments which are the coordinates of the ployshape
For more information refer to the link below
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!