diff --git a/README.md b/README.md index 8ed3306..1510f72 100644 --- a/README.md +++ b/README.md @@ -77,8 +77,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 ```