1PLSTART(3plplot) PLplot API PLSTART(3plplot)
2
3
4
6 plstart - Initialization
7
9 plstart(devname, nx, ny)
10
12 Alternative to plstar(3plplot) for initializing the plotting package.
13 The device name keyword for the desired output device must be supplied
14 as an argument. These keywords are the same as those printed out by
15 plstar(3plplot). If the requested device is not available, or if the
16 input string is empty or begins with ``?'', the prompted start up of
17 plstar(3plplot) is used. This routine also divides the output device
18 page into nx by ny subpages, each of which may be used independently.
19 The subroutine pladv(3plplot) is used to advance from one subpage to
20 the next.
21
22 Redacted form: General: plstart(devname, nx, ny)
23
24
25 This function is not used in any examples.
26
28 devname (PLCHAR_VECTOR(3plplot), input)
29 An ascii character string containing the device name keyword of
30 the required output device. If devname is NULL or if the first
31 character of the string is a ``?'', the normal (prompted) start
32 up is used.
33
34 nx (PLINT(3plplot), input)
35 Number of subpages to divide output page in the x direction.
36
37 ny (PLINT(3plplot), input)
38 Number of subpages to divide output page in the y direction.
39
40
42 Many developers (who are credited at http://plplot.org/credits.php)
43 have contributed to PLplot over its long history.
44
46 PLplot documentation at http://plplot.org/documentation.php.
47
48
49
50 August, 2019 PLSTART(3plplot)