| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
9.9.1 Plot (Python)
These functions draw continuous lines between points. The plots are drawn for each row if one of the data is the matrix. By any case the sizes of 1st dimension must be equal for all arrays x.nx=y.nx=z.nx. String pen specifies the color and style of line and marks (see section Line styles). By default (pen=NULL) solid line with color from palette is used (see section Pallete and colors). See also Area, Step, Stem, Tube, Mark, Error, Belt. See section Plot sample, for sample code and picture.
- Method on mglGraph (Python):
voidPlot (mglDatax,mglDatay,mglDataz,const char *pen=NULL) The function draws continuous lines between points {x[i], y[i], z[i]} in 3D space.
- Method on mglGraph (Python):
voidPlot (mglDatax,mglDatay,const char *pen=NULL) The function draws continuous lines between points {x[i], y[i]} in plane z=Min.z.
- Method on mglGraph (Python):
voidPlot (mglDatay,const char *pen=NULL) The function draws continuous lines between points {x[i], y[i]} in plane z=Min.z, where x[i] values are equidistantly distributed in interval [Min.x, Max.x].
