1PLSTRIPC(3plplot) PLplot API PLSTRIPC(3plplot)
2
3
4
6 plstripc - Create a 4-pen stripchart
7
9 plstripc(id, xspec, yspec, xmin, xmax, xjump, ymin, ymax, xlpos, ylpos,
10 y_ascl, acc, colbox, collab, colline, styline, legline[], labx, laby,
11 labtop)
12
14 Create a 4-pen stripchart, to be used afterwards by plstripa(3plplot)
15
16 Redacted form: General: plstripc(id, xspec, yspec, xmin, xmax, xjump,
17 ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline, sty‐
18 line, legline, labx, laby, labz) Perl/PDL: plstripc(xmin, xmax, xjump,
19 ymin, ymax, xlpos, ylpos, y_ascl, acc, colbox, collab, colline, sty‐
20 line, id, xspec, ypsec, legline, labx, laby, labtop)
21
22
23 This function is used in example 17.
24
26 id (PLINT *, output)
27 Identification number of stripchart to use on plstripa(3plplot)
28 and plstripd(3plplot).
29
30 xspec (char *, input)
31 X-axis specification as in plbox(3plplot).
32
33 yspec (char *, input)
34 Y-axis specification as in plbox(3plplot).
35
36 xmin (PLFLT, input)
37 Initial coordinates of plot box; they will change as data are
38 added.
39
40 xmax (PLFLT, input)
41 Initial coordinates of plot box; they will change as data are
42 added.
43
44 xjump (PLFLT, input)
45 When x attains xmax, the length of the plot is multiplied by the
46 factor (1 + xjump).
47
48 ymin (PLFLT, input)
49 Initial coordinates of plot box; they will change as data are
50 added.
51
52 ymax (PLFLT, input)
53 Initial coordinates of plot box; they will change as data are
54 added.
55
56 xlpos (PLFLT, input)
57 X legend box position (range from 0 to 1).
58
59 ylpos (PLFLT, input)
60 Y legend box position (range from 0 to 1).
61
62 y_ascl (PLBOOL, input)
63 Autoscale y between x jumps if y_ascl is true, otherwise not.
64
65 acc (PLBOOL, input)
66 Accumulate strip plot if acc is true, otherwise slide display.
67
68 colbox (PLINT, input)
69 Plot box color index (cmap0).
70
71 collab (PLINT, input)
72 Legend color index (cmap0).
73
74 colline (PLINT *, input)
75 Pointer to array with color indices (cmap0) for the 4 pens.
76
77 styline (PLINT *, input)
78 Pointer to array with line styles for the 4 pens.
79
80 legline (char **, input)
81 Pointer to character array containing legends for the 4 pens.
82
83 labx (char *, input)
84 X-axis label.
85
86 laby (char *, input)
87 Y-axis label.
88
89 labtop (char *, input)
90 Plot title.
91
92
94 Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This
95 man page was automatically generated from the DocBook source of the
96 PLplot documentation, maintained by Alan W. Irwin and Rafael
97 Laboissiere.
98
100 PLplot documentation at http://plplot.sourceforge.net/resources.
101
102
103
104 July, 2010 PLSTRIPC(3plplot)