Quantcast
Channel: MATLAB Central Newsreader - tag:"volume"
Viewing all articles
Browse latest Browse all 20

Volume between surface and plane

$
0
0
I have plotted a surface using surf(z) where z is a excel csv file containing 114x94 points of just z values. I have created an XY plane just above the surface and now I am trying to calculate the volume between the two.

%% 3D Surface
figure(1)
h1_surface = surf (M)

%% XY Plane
[x y] = meshgrid(0:1:94); % Generate x and y data
z = zeros(size(x, 1)); % Generate z data
figure(2)
h2_plane= surf(x, y, z) % Plot the plane

Viewing all articles
Browse latest Browse all 20

Trending Articles