1PLSTART(3plplot) PLplot API PLSTART(3plplot)
2
3
4
6 plstart - Initialization
7
9 plstart(device, 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. The device keywords are the same as those printed out
15 by plstar(3plplot). If the requested device is not available, or if
16 the input string is empty or begins with ``?'', the prompted startup of
17 plstar(3plplot) is used. This routine also divides the output device
18 into nx by ny subpages, each of which may be used independently. The
19 subroutine pladv(3plplot) is used to advance from one subpage to the
20 next.
21
22 Redacted form: General: plstart(device, nx, ny) Perl/PDL: plstart(nx,
23 ny, device)
24
25
26 This function is not used in any examples.
27
29 device (const char *, input)
30 Device name (keyword) of the required output device. If NULL or
31 if the first character is a ``?'', the normal (prompted) startup
32 is used.
33
34 nx (PLINT, input)
35 Number of subpages to divide output page in the horizontal
36 direction.
37
38 ny (PLINT, input)
39 Number of subpages to divide output page in the vertical direcā
40 tion.
41
42
44 Geoffrey Furnish and Maurice LeBrun wrote and maintain PLplot. This
45 man page was automatically generated from the DocBook source of the
46 PLplot documentation, maintained by Alan W. Irwin and Rafael
47 Laboissiere.
48
50 PLplot documentation at http://plplot.sourceforge.net/resources.
51
52
53
54 March, 2007 PLSTART(3plplot)