Qurak

Plot functions of one variable

Anleitung 9 Schritte, der Reihe nach in einer Sitzung ausgeführt. Jeder Schritt wurde gegen die Engine ausgeführt, und die Ausgabe unten ist, was er erzeugte.

Schritt 1
Plot[Sin[x], {x, 0, 2Pi}]
Ausgabe
-Graphics-
Schritt 2
Plot[{x, Sin[x], Sqrt[x]}, {x, 0, 2Pi}]
Ausgabe
-Graphics-
Schritt 3
LogPlot[E ^ x ^ 2, {x, 1, 5}]
Ausgabe
-Graphics-
Schritt 4
LogLinearPlot[Tanh[x], {x, 1, 50}]
Ausgabe
-Graphics-
Schritt 5
LogLogPlot[E ^ x ^ 2, {x, 1, 5}]
Ausgabe
-Graphics-
Schritt 6
ParametricPlot[{2Sin[t], Cos[t]}, {t, 0, 2Pi}]
Ausgabe
-Graphics-
Schritt 7
ParametricPlot3D[{5Cos[u], 5Sin[u], u + Sin[u]}, {u, -2Pi, 2Pi}]
Ausgabe
-Graphics3D-
Schritt 8
PolarPlot[Cos[t] ^ 2, {t, 0, 2Pi}]
Ausgabe
-Graphics-
Schritt 9
ContourPlot[x ^ 3 + x y ^ 2 + y == 0, {x, -1, 1}, {y, -10, 10}]
Ausgabe
-Graphics-

Verwendete Funktionen

Verwandte Rezepte

Alle Rezepte · Funktionsreferenz · Dies aus einem MCP-Client verwenden