plot ==== 2D plot Calling Sequence ~~~~~~~~~~~~~~~~ :: plot(y,,) plot(x,y,,) plot(x1,y1,,x2,y2,,...xN,yN,,,,..) plot(,...) Arguments ~~~~~~~~~ :x a real matrice or vector. If omitted, it is assumed to be the vector `1:n` where `n` is the number of curve points given by the `y` parameter. : :y a real matrice or vector. `y` can also be a function defined as a macro or a primitive. : : This optional argument must be a string that will be used as a shortcut to specify a way of drawing a line. We can have one `LineSpec` per `y` or `{x,y}` previously entered. `LineSpec` options deals with LineStyle, Marker and Color specifiers (see `LineSpec`_). Those specifiers determine the line style, mark style and color of the plotted lines. : : This optional argument represents a sequence of couple statements `{PropertyName,PropertyValue}` that defines global objects' properties applied to all the curves created by this plot. For a complete view of the available properties (see `GlobalProperty`_). : : This optional argument forces the plot to appear inside the selected axes given by `axes_handle` rather than the current axes (see `gca`_). : Description ~~~~~~~~~~~ `plot` plots a set of 2D curves. `plot` has been rebuild to better handle Matlab syntax. To improve graphical compatibility, Matlab users should use `plot` (rather than `plot2d`_). Data entry specification : In this paragraph and to be more clear, we won't mention `LineSpec` nor `GlobalProperty` optional arguments as they do not interfer with entry data (except for `"Xdata"`, `"Ydata"` and `"Zdata"` property, see `GlobalProperty`_). It is assumed that all those optional arguments could be present too. If `y` is a vector, plot(y) plots vector `y` versus vector `1:size(y,'*')`. If `y` is a matrix, plot(y) plots each columns of `y` versus vector `1:size(y,1)`. If `x` and `y` are vectors, plot(x,y) plots vector `y` versus vector `x`. `x` and `y` vectors should have the same number of entries. If `x` is a vector and `y` a matrix plot(x,y) plots each columns of `y` versus vector `x`. In this case the number of columns of `y` should be equal to the number of `x` entries. If `x` and `y` are matrices, plot(x,y) plots each columns of `y` versus corresponding column of `x`. In this case the `x` and `y` sizes should be the same. Finally, if only `x` or `y` is a matrix, the vector is plotted versus the rows or columns of the matrix. The choice is made depending on whether the vector's row or column dimension matches the matrix row or column dimension. In case of a square matrix (on `x` or `y` only), priority is given to columns rather than lines (see examples below). `y` can also be a function defined as a macro or a primitive. In this case, `x` data must be given (as a vector or matrix) and the corresponding computation `y(x)` is done implicitly. The `LineSpec` and `GlobalProperty` arguments sould be used to customize the plot. Here is a complete list of the available options. :LineSpec This option may be used to specify, in a short and easy manner, how the curves are drawn. It must always be a string containing references to LineStyle, Marker and Color specifiers. These references must be set inside the string (order is not important) in an unambiguous way. For example, to specify a red long-dashed line with the diamond mark enabled, you can write : `'r--d'` or `'--dire'` or `'--reddiam'` or another unambiguous statement... or to be totally complete `'diamondred--'` (see `LineSpec`_). Note that the line style and color, marks color (and sizes) can also be (re-)set through the polyline entity properties (see `polyline_properties`_). : :GlobalProperty This option may be used to specify how all the curves are plotted using more option than via `LineSpec`. It must always be a couple statement constituted of a string defining the `PropertyName`, and its associated value `PropertyValue` (which can be a string or an integer or... as well depending on the type of the `PropertyName`). Using `GlobalProperty`, you can set multiple properties : every properties available via LineSpec and more : the marker color (foreground and background), the visibility, clipping and thickness of the curves. (see `GlobalProperty`_) Note that all these properties can be (re-)set through the polyline entity properties (see `polyline_properties`_). : Remarks ~~~~~~~ By default, successive plots are superposed. To clear the previous plot, use `clf()`. To enable `auto_clear` mode as the default mode, edit your default axes doing: da=gda(); da.auto_clear = 'on' For a better display `plot` function may modify the `box` property of its parent Axes. This happens when the parent Axes were created by the call to `plot` or were empty before the call. If one of the axis is centered at origin, the box is disabled. Otherwise, the box is enabled. For more information about box property and axis positionning see `axes_properties`_ A default color table is used to color plotted curves if you do not specify a color. When drawing multiple lines, the plot command automatically cycles through this table. Here are the used colors: `R` `G` `B` 0. 0. 1. 0. 0.5 0. 1. 0. 0. 0. 0.75 0.75 0.75 0. 0.75 0.75 0.75 0. 0.25 0.25 0.25 Enter the command `plot` to see a demo. Sample ~~~~~~ Examples ~~~~~~~~ :: // x initialisation x=[0:0.1:2*%pi]'; //simple plot plot(`sin`_(x)) `clf`_() plot(x,`sin`_(x)) //multiple plot `clf`_() plot(x,[`sin`_(x) `sin`_(2*x) `sin`_(3*x)]) `clf`_() // axis on the right plot(x,`sin`_(x)) a=`gca`_(); // Handle on current axes entity a.y_location ="right"; `clf`_() // axis centered at (0,0) plot(x-4,`sin`_(x),x+2,`cos`_(x)) a=`gca`_(); // Handle on axes entity a.x_location = "origin"; a.y_location = "origin"; // Some operations on entities created by plot ... a=`gca`_(); a.isoview='on'; a.children // list the children of the axes : here it is an Compound child composed of 2 entities poly1= a.children.children(2); //store polyline handle into poly1 poly1.foreground = 4; // another way to change the style... poly1.thickness = 3; // ...and the tickness of a curve. poly1.clip_state='off' // clipping control a.isoview='off'; //LineSpec and GlobalProperty examples: `clf`_(); t=0:%pi/20:2*%pi; plot(t,`sin`_(t),'ro-.',t,`cos`_(t),'cya+',t,`abs`_(`sin`_(t)),'--mo') `scf`_(2) plot([t ;t],[`sin`_(t) ;`cos`_(t)],'xdat',[1:2]) `scf`_(3) axfig3 = `gca`_(); `scf`_(4) // should remain blank plot(axfig3,[t ;t],[`sin`_(t) ;`cos`_(t)],'zdat',[1:2],'marker','d','markerfac','green','markeredg','yel') `xdel`_(`winsid`_()) //Data specification t=-%pi:0.1:%pi; `size`_(t) plot(t) // simply plots y versus t vector size `clf`_(); // clear figure plot(t,`sin`_(t)); // plots sin(t) versus t `clf`_(); t=[1 1 1 1 2 3 4 5 3 4 5 6 4 5 6 7]; plot(t) // plots each t column versus row size `clf`_(); `subplot`_(221) plot(t,`sin`_(t)); // plots sin(t) versus t column by column this time `xtitle`_("sin(t) versus t") `subplot`_(222) plot(t,`sin`_(t)') `xtitle`_("sin(t)'' versus t") `subplot`_(223) plot(t',`sin`_(t)) a=`gca`_(); a.data_bounds=[0 -1;7 1]; // to see the vertical line hiddden by the y axis `xtitle`_("sin(t) versus t''") `subplot`_(224) plot(t',`sin`_(t)') `xtitle`_("sin(t)'' versus t''") `clf`_(); //Special case 1 //x : vector ([5 6 7 8]) and y : matrix (t) x=[5 6 7 8] plot(x,t); plot(x',t); // idem, x is automatically transposed to match t (here the columns) `clf`_() // Only one matching possibility case : how to make 4 identical plots in 4 manners... // x is 1x4 (vector) and y is 4x5 (non square matrix) `subplot`_(221); plot(x,[t [8;9;10;12]]'); `subplot`_(222); plot(x',[t [8;9;10;12]]'); `subplot`_(223); plot(x,[t [8;9;10;12]]'); `subplot`_(224); plot(x',[t [8;9;10;12]]'); `clf`_() //Special case 2 // Case where only x or y is a square matrix //x : matrix (t) and y : vector ([1 2 3 4]) plot(t,[1 2 3 4]) // equivalent to plot(t,[1 1 1 1;2 2 2 2;3 3 3 3;4 4 4 4]) plot(t,[1;2;3;4]) // the same plot `clf`_(); // t is transposed : notice the priority given to the columns treatment plot(t',[1 2 3 4]) // equivalent to plot(t',[1 1 1 1;2 2 2 2;3 3 3 3;4 4 4 4]) plot(t',[1 2 3 4]') // the same plot `clf`_(); // y is a function defined by.. // ..a primitive plot(1:0.1:10,`sin`_) // equivalent to plot(1:0.1:10,sin(1:0.1:10)) `clf`_(); // ..a macro: `deff`_('[y]=toto(x)','y=x.*x') plot(1:10,toto) See Also ~~~~~~~~ + `plot2d`_ 2D plot + `surf`_ 3D surface plot + `scf`_ set the current graphic figure (window) + `clf`_ clear or reset the current graphic figure (window) to default values + `xdel`_ delete a graphics window + `delete`_ delete a graphic entity and its children. + `LineSpec`_ to quickly customize the lines appearance in a plot + `GlobalProperty`_ to customize the objects appearance (curves, surfaces...) in a plot or surf command. .. _GlobalProperty: GlobalProperty.html .. _xdel: xdel.html .. _delete: delete.html .. _surf: surf.html .. _LineSpec: LineSpec.html .. _clf: clf.html .. _plot2d: plot2d.html .. _axes_properties: axes_properties.html .. _scf: scf.html .. _gca: gca.html .. _polyline_properties: polyline_properties.html