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))?
조회 수: 2 (최근 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!