Maple: Funktion plotten < Maple < Mathe-Software < Mathe < Vorhilfe
|
Hallo,
wie kann man f(x,y) = [mm] x^2 [/mm] * sin y
mit Maple plotten?
[mm] f:=x,y->x^2*sin(y);
[/mm]
plot3d(f);
Die Hilfe versteh ich nicht und die Fehlermeldung erst recht nicht.
Vielen Dank im Voraus!!
|
|
|
|
Status: |
(Antwort) fertig | Datum: | 22:22 Do 21.04.2005 | Autor: | Nam |
f := (x,y) -> [mm] x^2 [/mm] * sin(y);
plot3d(f(x,y), x=-2*Pi..2*Pi, y=-2*Pi..2*Pi);
|
|
|
|