1PLSDIPLZ(3plplot) PLplot API PLSDIPLZ(3plplot)
2
3
4
6 plsdiplz - Set parameters incrementally (zoom mode) that define current
7 plot-space window
8
10 plsdiplz(xmin, ymin, xmax, ymax)
11
13 Set relative minima and maxima incrementally (zoom mode) that define
14 the current plot-space window. This function has the same effect as
15 plsdiplt(3plplot) if that function has not been previously called.
16 Otherwise, this function implements zoom mode using the transformation
17 min_used = old_min + old_length*min and max_used = old_min +
18 old_length*max for each axis. For example, if min = 0.05 and max =
19 0.95 for each axis, repeated calls to plsdiplz(3plplot) will zoom in by
20 10 per cent for each call.
21
22 Redacted form: plsdiplz(xmin, ymin, xmax, ymax)
23
24 This function is used in example 31.
25
27 xmin (PLFLT(3plplot), input)
28 Relative (incremental) minimum in x.
29
30 ymin (PLFLT(3plplot), input)
31 Relative (incremental) minimum in y.
32
33 xmax (PLFLT(3plplot), input)
34 Relative (incremental) maximum in x.
35
36 ymax (PLFLT(3plplot), input)
37 Relative (incremental) maximum in y.
38
39
41 Many developers (who are credited at http://plplot.org/credits.php)
42 have contributed to PLplot over its long history.
43
45 PLplot documentation at http://plplot.org/documentation.php.
46
47
48
49 August, 2021 PLSDIPLZ(3plplot)