Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

plstripc(3plplot) [debian man page]

PLSTRIPC(3plplot)						    PLplot API							 PLSTRIPC(3plplot)

NAME
plstripc - Create a 4-pen stripchart SYNOPSIS
plstripc(id, xspec, yspec, xmin, xmax, xjump, ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline, styline, legline[], labx, laby, labtop) DESCRIPTION
Create a 4-pen stripchart, to be used afterwards by plstripa(3plplot) Redacted form: General: plstripc(id, xspec, yspec, xmin, xmax, xjump, ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline, sty- line, legline, labx, laby, labz) Perl/PDL: plstripc(xmin, xmax, xjump, ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline, sty- line, id, xspec, ypsec, legline, labx, laby, labtop) This function is used in example 17. ARGUMENTS
id (PLINT *, output) Identification number of stripchart to use on plstripa(3plplot) and plstripd(3plplot). xspec (char *, input) X-axis specification as in plbox(3plplot). yspec (char *, input) Y-axis specification as in plbox(3plplot). xmin (PLFLT, input) Initial coordinates of plot box; they will change as data are added. xmax (PLFLT, input) Initial coordinates of plot box; they will change as data are added. xjump (PLFLT, input) When x attains xmax, the length of the plot is multiplied by the factor (1 + xjump). ymin (PLFLT, input) Initial coordinates of plot box; they will change as data are added. ymax (PLFLT, input) Initial coordinates of plot box; they will change as data are added. xlpos (PLFLT, input) X legend box position (range from 0 to 1). ylpos (PLFLT, input) Y legend box position (range from 0 to 1). y_ascl (PLBOOL, input) Autoscale y between x jumps if y_ascl is true, otherwise not. acc (PLBOOL, input) Accumulate strip plot if acc is true, otherwise slide display. colbox (PLINT, input) Plot box color index (cmap0). collab (PLINT, input) Legend color index (cmap0). colline (PLINT *, input) Pointer to array with color indices (cmap0) for the 4 pens. styline (PLINT *, input) Pointer to array with line styles for the 4 pens. legline (char **, input) Pointer to character array containing legends for the 4 pens. labx (char *, input) X-axis label. laby (char *, input) Y-axis label. labtop (char *, input) Plot title. AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere. SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources. August, 2012 PLSTRIPC(3plplot)

Check Out this Related Man Page

PLIMAGEFR(3plplot)						    PLplot API							PLIMAGEFR(3plplot)

NAME
plimagefr - Plot a 2D matrix using color map1 SYNOPSIS
plimagefr(idata, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, valuemin, valuemax, pltr, pltr_data) DESCRIPTION
Plot a 2D matrix using color map1. Redacted form: General: plimagefr(idata, xmin, xmax, ymin, ymax, zmin, zmax, valuemin, valuemax, pltr, pltr_data) This function is used in example 20. ARGUMENTS
idata (PLFLT**, input) A 2D array of values (intensities) to plot. Should have dimensions idata[nx][ny]. nx, ny (PLINT, input) Dimensions of idata xmin, xmax, ymin, ymax (PLFLT, input) Stretch image data to these Plot coordinates. idata[0][0] corresponds to (xmin, ymin) and idata[nx - 1][ny - 1] corresponds to (xmax, ymax). zmin, zmax (PLFLT, input) Only data between zmin and zmax (inclusive) will be plotted. valuemin, valuemax (PLFLT, input) The minimum and maximum data values to use for value to color mappings. A datum equal to or less than valuemin will be plotted with color 0.0, while a datum equal to or greater than valuemax will be plotted with color 1.0. Data between valuemin and valuemax map linearly to colors between 0.0 and 1.0. pltr (void (*) (PLFLT, PLFLT, PLFLT *, PLFLT *, PLPointer) , input) Pointer to function that defines a transformation between the data in the array idata and world coordinates. An input coordinate of (0, 0) corresponds to the "top-left" corner of idata while (nx, ny) corresponds to the "bottom-right" corner of idata. Some trans- formation functions are provided in the PLplot library: pltr0(3plplot) for identity mapping, and pltr1(3plplot) and pltr2(3plplot) for arbitrary mappings respectively defined by one- and two-dimensional arrays. In addition, user-supplied routines for the trans- formation can be used as well. Examples of all of these approaches are given in the PLplot documentation. The transformation func- tion should have the form given by any of pltr0(3plplot), pltr1(3plplot), or pltr2(3plplot). pltr_data (PLPointer, input) Extra parameter to help pass information to pltr0(3plplot), pltr1(3plplot), pltr2(3plplot), or whatever routine is externally sup- plied. AUTHORS
Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This man page was automatically generated from the DocBook source of the PLplot documentation, maintained by Alan W. Irwin and Rafael Laboissiere. SEE ALSO
PLplot documentation at http://plplot.sourceforge.net/resources. August, 2012 PLIMAGEFR(3plplot)
Man Page