How to calculate volume of surf plot (3d plot) en matlab?
57 views (last 30 days)
Show older comments
How to calculate volume of surf plot (3d plot) en matlab?
using variable x and y and function z
0 Comments
Accepted Answer
Star Strider
on 17 Sep 2021
x = 1:10;
y = 1:20;
[X,Y] = meshgrid(x,y);
z = exp(-((X-5)/5.*(Y-10)/10).^2)
zvol = trapz(x,trapz(y,z))
figure
surf(x, y, z)
grid on
.
4 Comments
Star Strider
on 17 Sep 2021
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!