% Beispielskript zum Zeichnen des Graphen einer Funktion von 2 Variablen
[X,Y] = meshgrid(-1:0.1:1, -2:0.1:2);
Z = sin(pi*X).*sin(pi*Y);
surf(X,Y,Z)