diff --git a/README.md b/README.md index e47dfca..1bd4f88 100644 --- a/README.md +++ b/README.md @@ -78,8 +78,10 @@ function [w] = membrane_solution(T,P,n) 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 (10 x 10)') + zlabel('Z Position (micron)') + ylabel('Y Position (micron)') + xlabel('X Position (micron)') % Membrane displacement is shown on chart end ```