Qurak

Plot functions of one variable

How-to 9 steps, run in order in one session. Every step was executed against the engine and the output below is what it produced.

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

Functions used

Related recipes

All recipes · Function reference · Use this from an MCP client