Parame.darst. Fläche in Maple < Abbildungen < Lineare Algebra < Hochschule < Mathe < Vorhilfe
|
Status: |
(Frage) beantwortet | Datum: | 17:00 Fr 21.01.2011 | Autor: | Emma91 |
Aufgabe | Die Fläche µ sei durch die Parameterdarstellung
[mm] x(u,v)=(u,v,u^3-3uv^2)
[/mm]
beschrieben.
a. Plotten Sie diese Fläche für den Parameterbereich (u,v)]element][-1,1]x[-1,1] mit MAPLE. |
Ich habe versucht diese Fläche darzustellen, aber ich sehe nur das leere Koordinatensystem. Leider kenne ich mich nicht weiter mit Maple aus, habe das nur durch probieren soweit bekommen.
Kann mir bitte jemand sagen was an meinem Quelltext falsch ist? Danke schonmal für alle Antworten!
------------------------
> with(plots);
print(`output redirected...`); # input placeholder
[animate, animate3d, animatecurve, arrow, changecoords, complexplot, complexplot3d, conformal, conformal3d, contourplot, contourplot3d, coordplot, coordplot3d, densityplot, display, dualaxisplot, fieldplot,fieldplot3d, gradplot, gradplot3d, graphplot3d, implicitplot, implicitplot3d, inequal, interactive, interactiveparams, intersectplot,listcontplot, listcontplot3d, listdensityplot, listplot, listplot3d, loglogplot, logplot, matrixplot, multiple, odeplot, pareto, plotcompare, pointplot, pointplot3d, polarplot, polygonplot, polygonplot3d, olyhedra_supported, polyhedraplot, rootlocus, semilogplot, setcolors, setoptions, setoptions3d, spacecurve, sparsematrixplot, surfdata, textplot, textplot3d, tubeplot]
> with(plots):
> spacecurve([u, v, [mm] u^3-3*uv^2], [/mm] -1 .. 1, -1 .. 1, numpoints = 2000, color = blue, axes = boxed, title = "Aufgabe 2a");
------------------
Bei normalen Achsen oder mit fieldplot3d ist genau das selbe Problem
[Ich habe diese Frage in keinem Forum auf anderen Internetseiten gestellt.]
|
|
|
|
Hallo Emma91,
> Die Fläche µ sei durch die Parameterdarstellung
> [mm]x(u,v)=(u,v,u^3-3uv^2)[/mm]
> beschrieben.
> a. Plotten Sie diese Fläche für den Parameterbereich
> (u,v)]element][-1,1]x[-1,1] mit MAPLE.
> Ich habe versucht diese Fläche darzustellen, aber ich
> sehe nur das leere Koordinatensystem. Leider kenne ich mich
> nicht weiter mit Maple aus, habe das nur durch probieren
> soweit bekommen.
> Kann mir bitte jemand sagen was an meinem Quelltext falsch
> ist? Danke schonmal für alle Antworten!
>
> ------------------------
>
> > with(plots);
> print('output redirected...'); # input placeholder
> [animate, animate3d, animatecurve, arrow, changecoords,
> complexplot, complexplot3d, conformal, conformal3d,
> contourplot, contourplot3d, coordplot, coordplot3d,
> densityplot, display, dualaxisplot, fieldplot,fieldplot3d,
> gradplot, gradplot3d, graphplot3d, implicitplot,
> implicitplot3d, inequal, interactive, interactiveparams,
> intersectplot,listcontplot, listcontplot3d,
> listdensityplot, listplot, listplot3d, loglogplot, logplot,
> matrixplot, multiple, odeplot, pareto, plotcompare,
> pointplot, pointplot3d, polarplot, polygonplot,
> polygonplot3d, olyhedra_supported, polyhedraplot,
> rootlocus, semilogplot, setcolors, setoptions,
> setoptions3d, spacecurve, sparsematrixplot, surfdata,
> textplot, textplot3d, tubeplot]
>
> > with(plots):
> > spacecurve([u, v, [mm]u^3-3*uv^2],[/mm] -1 .. 1, -1 .. 1,
> numpoints = 2000, color = blue, axes = boxed, title =
> "Aufgabe 2a");
>
Mit "spacecurve" kannst Du meines Wissens nur Kurven plotten.
Besser geeignet ist hier "plot3d".
Siehe auch: 3-dimensionales Plotten in Maple
Oder auch hier: Kurven und Flächen
>
> ------------------
> Bei normalen Achsen oder mit fieldplot3d ist genau das
> selbe Problem
>
>
> [Ich habe diese Frage in keinem Forum auf anderen
> Internetseiten gestellt.]
>
Gruss
MathePower
|
|
|
|