1PLSTRIPC(3plplot) PLplot API PLSTRIPC(3plplot)
2
3
4
6 plstripc - Create a 4-pen strip chart
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 strip chart, 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_NC_SCALAR(3plplot), output)
27 Returned value of the identification number of the strip chart
28 to use on plstripa(3plplot) and plstripd(3plplot).
29
30 xspec (PLCHAR_VECTOR(3plplot), input)
31 An ascii character string containing the x-axis specification as
32 in plbox(3plplot).
33
34 yspec (PLCHAR_VECTOR(3plplot), input)
35 An ascii character string containing the y-axis specification as
36 in plbox(3plplot).
37
38 xmin (PLFLT(3plplot), input)
39 Initial coordinates of plot box; they will change as data are
40 added.
41
42 xmax (PLFLT(3plplot), input)
43 Initial coordinates of plot box; they will change as data are
44 added.
45
46 xjump (PLFLT(3plplot), input)
47 When x attains xmax, the length of the plot is multiplied by the
48 factor (1 + xjump) .
49
50 ymin (PLFLT(3plplot), input)
51 Initial coordinates of plot box; they will change as data are
52 added.
53
54 ymax (PLFLT(3plplot), input)
55 Initial coordinates of plot box; they will change as data are
56 added.
57
58 xlpos (PLFLT(3plplot), input)
59 X legend box position (range from 0 to 1).
60
61 ylpos (PLFLT(3plplot), input)
62 Y legend box position (range from 0 to 1).
63
64 y_ascl (PLBOOL(3plplot), input)
65 Autoscale y between x jumps if y_ascl is true, otherwise not.
66
67 acc (PLBOOL(3plplot), input)
68 Accumulate strip plot if acc is true, otherwise slide display.
69
70 colbox (PLINT(3plplot), input)
71 Plot box color index (cmap0).
72
73 collab (PLINT(3plplot), input)
74 Legend color index (cmap0).
75
76 colline (PLINT_VECTOR(3plplot), input)
77 A vector containing the cmap0 color indices for the 4 pens.
78
79 styline (PLINT_VECTOR(3plplot), input)
80 A vector containing the line style indices for the 4 pens.
81
82 legline (PLCHAR_MATRIX(3plplot), input)
83 A vector of UTF-8 character strings containing legends for the 4
84 pens.
85
86 labx (PLCHAR_VECTOR(3plplot), input)
87 A UTF-8 character string containing the label for the x axis.
88
89 laby (PLCHAR_VECTOR(3plplot), input)
90 A UTF-8 character string containing the label for the y axis.
91
92 labtop (PLCHAR_VECTOR(3plplot), input)
93 A UTF-8 character string containing the plot title.
94
95
97 Many developers (who are credited at http://plplot.source‐
98 forge.net/credits.php) have contributed to PLplot over its long his‐
99 tory.
100
102 PLplot documentation at http://plplot.sourceforge.net/documenta‐
103 tion.php.
104
105
106
107 August, 2017 PLSTRIPC(3plplot)