Function | Action |
|
Plot[ f, {x, a, b} ] | Draws a graph of the function determined by the expression f with independent variable x from the interval [a, b] |
Plot[ f, {x, a, b}, PlotRange ->{c, d} ] | Draws a graph of the function determined by the expression f with independent variable x from the interval [a, b] and values of f in the interval [c, d] |
Plot[ {f1, f2, f3,...}, {x, a, b} ] | Draws in one coordinate system the graphs of the functions f1, f2, ... with indepentent variable x in the interval [a, b] |
| Draws in one coordinate system the graphs stored in variables g1, g2, ... |
ListPlot[ {y1, y2, y3, ...} ] | Draws points with co-ordinates {1,y1},{2,y2},... |
ListPlot [ { {x1,y1}, {x2,y2}, ...} ] | Draws points {x1,y1}, {x2,y2},... |
ListPlot[ списък , PlotJoined ->True ] | Connects the dots with a broken line |
ParametricPlot[ {fx,fy} , {t, tmin,tmax} ] | Draws a parametric curve, t - parameter |
ParametricPlot[ {fx,fy} , {gx,gy},...,{t, tmin,tmax} ] | Draws several parametric curves in one coordinate system, t - parameter |
ParametricPlot[ {fx,fy} , {t, tmin,tmax}, AspectRatio -> Automatic ] | In addition to the previous here the parameter AspectRatio defines the ratio y/x. |
Play[ f, {t, tmin, tmax} ] | Plays a sound whose amplitude is given by f as a function of time t in seconds between tmin and tmax |
ListPlay[{a1,a2,a3,...}, SampleRate -> r ] | Plays a sound whose amplitude is given by the sequence of levels in a list {a1, a2, ...} |
Show[ ssound1 ] | Plays the saved in variable ssound1. |