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