u=[0 0 0 0 ; 0 1 1 0; 0 1 1 0; 0 0 0 0]; f=[0 1 2 3 ; 0 2 4 6; 0 3 5 7; 0 1 3 5]; i=0:1/2:1.5; j=0:1/2:1.5; figure; subplot(4,2,1); mesh(j,i,f); subplot(4,2,2); mesh(j,i,f); subplot(4,2,3); plot3(i,j,f); subplot(4,2,4); plot3(i,j,f); subplot(4,2,5); mesh(j,i,u); subplot(4,2,6); surf(j,i,u); subplot(4,2,7); surfc(j,i,u); subplot(4,2,8); plot3(j,i,u); print -dpng 'loesung.png';