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 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (1)
Jyotsna Talluri
il 6 Ago 2019
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 Commenti
Vedere anche
Categorie
Scopri di più su Surface and Mesh Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!