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
%% 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