% Numerical Mathematics and Computing, Fifth Edition % Ward Cheney & David Kincaid % Brooks/Cole Publ. Co. % (c) 2004 % % file: heat.m % PDE: Heat Equation % x = linspace(0,1,20); t = linspace(0,2,5); m = 0; sol = pdepe(m,@pdex1pde,@pdex1ic,@pdex1bc,x,t); u = sol(:,:,1); surf(x,t,u) title('Numerical solution computed with 20 mesh points') xlabel('Distance x') ylabel('Time t') figure plot(x,u(end,:)) title('Solution at t=2') xlabel('Distance x') ylabel('u(x,2)')