diff --git a/Part C/membrane_solution.m b/Part C/membrane_solution.m index a3b6d3e..537747b 100644 --- a/Part C/membrane_solution.m +++ b/Part C/membrane_solution.m @@ -22,7 +22,9 @@ w = k\y; z = zeros(size(x)); z(2:end-1,2:end-1) = reshape(w,[n n]); surf(x,y,z) -title('Membrane Displacement') -zlabel('Displacement (micrometer)') +title('Membrane Displacement (3 x 3)') +zlabel('Z Position (micron)') +ylabel('Y Position (micron)') +xlabel('X Position (micron)') % Membrane displacement is shown on chart -end \ No newline at end of file +end